From 61f38d391e1b4890a460edb49122cafb5c38e69f Mon Sep 17 00:00:00 2001 From: Sergey Petrov Date: Tue, 9 Feb 2016 15:39:29 +0300 Subject: [PATCH] setup.py adjustements --- .gitignore | 1 + setup.py | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) mode change 100644 => 100755 setup.py diff --git a/.gitignore b/.gitignore index 7ad9ee9..b7088fe 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ lib64/ parts/ sdist/ var/ +MANIFEST *.egg-info/ .installed.cfg *.egg diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 6f72563..eb92e23 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + from distutils.core import setup setup( @@ -5,9 +7,17 @@ setup( version='0.1.0', packages=['apns2'], requires=['hyper'], - url='', + 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.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' )