-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.09 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
from setuptools import setup
import sys
setup(
name='apns-worker',
version='0.1',
description="A robust client library for Apple's push notification service.",
long_description=open('README.rst').read(),
author='Peter Sagerson',
author_email='[email protected]',
url='https://github.com/bbits/apns-worker',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=[
'six',
],
packages=[
'apns_worker',
'apns_worker.backend',
'apns_worker.tests',
],
include_package_data=True,
zip_safe=False,
test_suite='apns_worker.tests',
tests_require=['mock'] if sys.version_info < (3, 3) else [],
)