Add setup.py

This commit is contained in:
Sergey Petrov
2016-01-28 12:21:29 +03:00
parent 0f186aed66
commit f2d5f9e5d0
+12
View File
@@ -0,0 +1,12 @@
from distutils.core import setup
setup(
name='apns2',
version='0.1.0',
packages=['apns2'],
url='',
license='MIT',
author='Petrov Sergey',
author_email='me@pr0ger.prg',
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
)