Files
PyAPNs2/setup.py
T
2020-06-23 18:38:47 -04:00

35 lines
945 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup
setup(
name='apns2',
version='0.7.2',
packages=['apns2'],
install_requires=[
'httpx>=0.13.0',
'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='me@pr0ger.prg',
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'
)