Roy Hyunjin Han 2012-04-14 12:09:14 -04:00
commit 6a73a57bc3
12 changed files with 211 additions and 0 deletions

31
setup.py Normal file
View file

@ -0,0 +1,31 @@
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
setup(
name='socketIO-client',
version='0.1',
description='Barebones socket.io client library',
long_description=README + '\n\n' + CHANGES,
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
],
keywords='socket.io node.js',
author='Roy Hyunjin Han',
author_email='starsareblueandfaraway@gmail.com',
url='https://github.com/invisibleroads/socketIO-client',
install_requires=[
'websocket-client',
],
packages=find_packages(),
include_package_data=True,
zip_safe=True)