Repository URL to install this package:
Version:
1.0.1 ▾
|
apns23
/
setup.py
|
---|
#!/usr/bin/env python
from setuptools import setup
dependencies = [
'hyper>=0.7',
'PyJWT>=1.4.0',
'cryptography>=1.7.2',
'enum-compat==0.0.3',
]
setup(
name='apns23',
version='1.0.1',
packages=['apns23'],
install_requires=dependencies,
extras_require={
"tests": [
'freezegun',
'pytest',
'mock',
],
},
url='https://github.com/VinayGValsaraj/PyAPNs23',
license='MIT',
author='Vinay Valsaraj',
author_email='vinaygvalsaraj@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
],
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
)