From ba08c8ff6a38e79cfa60c32c78c21749126a824a Mon Sep 17 00:00:00 2001 From: Erik Kulyk Date: Sat, 13 Dec 2014 11:04:02 -0700 Subject: [PATCH] Bump version and update setup.py. --- MANIFEST.in | 2 ++ setup.py | 28 ++++++++++++++++++++++++---- 2 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..04f196a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include README.md +include LICENSE diff --git a/setup.py b/setup.py index 98ea4da..8d0fefa 100644 --- a/setup.py +++ b/setup.py @@ -1,18 +1,38 @@ from setuptools import setup -import sys -VERSION = "0.2.0" +VERSION = "0.3.0" requirements = ["websocket-client"] +def readme(): + with open('README.md') as f: + return f.read() + setup( name="pusherclient", version=VERSION, description="Pusher websocket client for python", + long_description=readme(), + keywords="pusher websocket client", author="Erik Kulyk", author_email="e.kulyk@gmail.com", - license="", - url="", + license="MIT", + url="https://github.com/ekulyk/PythonPusherClient", install_requires=requirements, packages=["pusherclient"], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Topic :: Internet', + 'Topic :: Software Development :: Libraries ', + 'Topic :: Software Development :: Libraries :: Python Modules', + ] )