-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 851 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 851 Bytes
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
#!/usr/bin/env python
import sys
from setuptools import setup
from setuptools import find_packages
from sinal2 import __version__
setup(name='python-sinal2',
version=__version__,
description='Sina Level2 Data Fetcher',
author='Jingchao Hu',
author_email='jingchaohu@gmail.com',
url='http://github.com/observerss/sinal2',
packages=find_packages(),
install_requires=['tqdm', 'requests', 'websocket-client', 'gevent', 'gipc', 'click', 'wsaccel'],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'sinal2 = sinal2.cli:cli',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
)