forked from Pr0Ger/PyAPNs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (32 loc) · 942 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='apns2',
version='0.7.1',
packages=['apns2'],
install_requires=[
'hyper>=0.7',
'PyJWT>=1.4.0',
'cryptography>=1.7.2',
],
extras_require={
"tests": [
'freezegun',
'pytest',
],
},
url='https://github.com/Pr0Ger/PyAPNs2',
license='MIT',
author='Sergey Petrov',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
],
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
)