Skip to content

Commit

Permalink
Bump version and update setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekulyk committed Dec 13, 2014
1 parent d264beb commit ba08c8f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include README.md
include LICENSE
28 changes: 24 additions & 4 deletions 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',
]
)

0 comments on commit ba08c8f

Please sign in to comment.