This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
47 lines (43 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import io
import os
from autopush import __version__
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf8') as f:
CHANGES = f.read()
extra_options = {
"packages": find_packages(),
}
setup(name="AutoPush",
version=__version__,
description='SimplePush Server',
long_description=README + '\n\n' + CHANGES,
classifiers=["Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: Implementation :: PyPy",
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7"
],
keywords='push',
author="Ben Bangert",
author_email="ben@groovie.org",
url='http:///',
license="MPL2",
test_suite="nose.collector",
include_package_data=True,
zip_safe=False,
tests_require=['nose', 'coverage', 'mock>=1.0.1', 'moto>=0.4.1'],
entry_points="""
[console_scripts]
autopush = autopush.main:ConnectionApplication.main
autoendpoint = autopush.main:EndpointApplication.main
autokey = autokey:main
endpoint_diagnostic = autopush.diagnostic_cli:run_endpoint_diagnostic_cli
drop_users = autopush.scripts.drop_user:drop_users
[nose.plugins]
object-tracker = autopush.noseplugin:ObjectTracker
""",
**extra_options
)