Incorporated suggestions from Paul Kienzle, Josh VanderLinden, Ian Fitzpatrick
This commit is contained in:
parent
7d68382340
commit
672b2fc679
9 changed files with 525 additions and 97 deletions
16
setup.py
Normal file → Executable file
16
setup.py
Normal file → Executable file
|
|
@ -1,7 +1,8 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
from socketIO import __version__
|
||||
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
README = open(os.path.join(here, 'README.rst')).read()
|
||||
|
|
@ -9,10 +10,10 @@ CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
|
|||
|
||||
|
||||
setup(
|
||||
name='socketIO-client',
|
||||
version='0.1.1',
|
||||
description='Barebones socket.io client library',
|
||||
long_description=README + '\n\n' + CHANGES,
|
||||
name='socketIOClient',
|
||||
version=__version__,
|
||||
description='A socket.io client library',
|
||||
long_description=README + '\n\n' + CHANGES,
|
||||
license='MIT',
|
||||
classifiers=[
|
||||
'Intended Audience :: Developers',
|
||||
|
|
@ -21,9 +22,10 @@ setup(
|
|||
],
|
||||
keywords='socket.io node.js',
|
||||
author='Roy Hyunjin Han',
|
||||
author_email='starsareblueandfaraway@gmail.com',
|
||||
url='https://github.com/invisibleroads/socketIO-client',
|
||||
author_email='rhh@crosscompute.com',
|
||||
url='https://github.com/invisibleroads/socketIOClient',
|
||||
install_requires=[
|
||||
'anyjson',
|
||||
'websocket-client',
|
||||
],
|
||||
packages=find_packages(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue