Files
PyAPNs2/setup.py
T
2016-02-01 14:08:28 +03:00

14 lines
335 B
Python

from distutils.core import setup
setup(
name='apns2',
version='0.1.0',
packages=['apns2'],
requires=['hyper'],
url='',
license='MIT',
author='Sergey Petrov',
author_email='me@pr0ger.prg',
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
)