socketIO-client/setup.py
2012-08-09 01:41:11 -04:00

33 lines
915 B
Python
Executable file

import os
from setuptools import setup, find_packages
from socketIOClient import __version__
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=__version__,
description='A 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='rhh@crosscompute.com',
url='https://github.com/invisibleroads/socketIOClient',
install_requires=[
'anyjson',
'websocket-client',
],
packages=find_packages(),
include_package_data=True,
zip_safe=True)