forked from Pr0Ger/PyAPNs2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (27 loc) · 862 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (27 loc) · 862 Bytes
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
#!/usr/bin/env python
from setuptools import setup
dependencies = ['hyper']
try:
# noinspection PyUnresolvedReferences
import enum
except ImportError:
dependencies.append('enum34')
setup(
name='pyapns2',
version='0.1.5',
packages=['apns2'],
install_requires=dependencies,
url='https://github.com/Pr0Ger/PyAPNs2',
license='MIT',
author='Sergey Petrov',
author_email='me@pr0ger.prg',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
)