Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
apns23 / setup.py
Size: Mime:
#!/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'
)