-
Notifications
You must be signed in to change notification settings - Fork 205
/
setup.py
39 lines (37 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import io
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
HERE = dirname(abspath(__file__))
LOAD_TEXT = lambda name: io.open(join(HERE, name), encoding='UTF-8').read()
DESCRIPTION = '\n\n'.join(LOAD_TEXT(_) for _ in [
'README.rst',
'CHANGES.rst',
])
setup(
name='socketIO-client',
version='0.7.2',
description='A socket.io client library',
long_description=DESCRIPTION,
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
],
keywords='socket.io node.js',
author='Roy Hyunjin Han',
author_email='[email protected]',
url='https://github.com/invisibleroads/socketIO-client',
install_requires=[
'requests>=2.7.0',
'six',
'websocket-client',
],
tests_require=[
'nose',
'coverage',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False)