setup.py adjustements
This commit is contained in:
@@ -20,6 +20,7 @@ lib64/
|
|||||||
parts/
|
parts/
|
||||||
sdist/
|
sdist/
|
||||||
var/
|
var/
|
||||||
|
MANIFEST
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
@@ -5,9 +7,17 @@ setup(
|
|||||||
version='0.1.0',
|
version='0.1.0',
|
||||||
packages=['apns2'],
|
packages=['apns2'],
|
||||||
requires=['hyper'],
|
requires=['hyper'],
|
||||||
url='',
|
url='https://github.com/Pr0Ger/PyAPNs2',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Sergey Petrov',
|
author='Sergey Petrov',
|
||||||
author_email='me@pr0ger.prg',
|
author_email='me@pr0ger.prg',
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 4 - Beta',
|
||||||
|
'License :: OSI Approved :: MIT License',
|
||||||
|
'Programming Language :: Python :: 3.3',
|
||||||
|
'Programming Language :: Python :: 3.4',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Topic :: Software Development :: Libraries',
|
||||||
|
],
|
||||||
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
|
description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol'
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user