-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.12 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
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.md'
])
setup(
name='tyo-mq-client',
version='0.0.7',
description='A tyo-mq client library',
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
],
keywords='tyo-mq socket.io node.js pub/sub publisher/subscriber',
author='Eric Tang',
author_email='[email protected]',
url='https://github.com/tyolab/tyo-mq-client-python.git',
install_requires=[
'python-socketio[client]>=4.6.1',
'invisibleroads-macros>=0.9.4.4'
],
tests_require=[
'nose',
'coverage',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False)