Wrapped code from http://stackoverflow.com/questions/6692908/formatting-messages-to-send-to-socket-io-node-js-server-from-python-client/
This commit is contained in:
commit
6a73a57bc3
12 changed files with 211 additions and 0 deletions
31
setup.py
Normal file
31
setup.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue