-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (39 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for apns3."""
import setuptools
try:
README = open('README.rst').read()
CHANGES = open('CHANGES.rst').read()
except IOError:
DESCRIPTION = '<placeholder>'
else:
DESCRIPTION = README + '\n' + CHANGES
setuptools.setup(
name='apns3',
version='0.0.0',
description="A client library for Apple's APNs v3 HTTP/2 push notification service",
url='https://github.com/joshfriend/apns3',
author='Josh Friend',
author_email='josh@fueledbycaffeine.com',
packages=setuptools.find_packages(),
long_description=(DESCRIPTION),
license='MIT',
classifiers=[
# TODO: update this list to match your application: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 1 - Planning',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
python_requires='>=2.7.10,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
install_requires=open('requirements/base.txt').readlines(),
extras_require={
'pyopenssl': open('requirements/pyopenssl.txt').readlines(),
}
)