-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.64 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
40
41
42
43
44
#!/usr/bin/python
from setuptools import setup, find_packages
install_requires = \
[
'cfscrape>=1.9.2',
'signalr-client==0.0.7',
'requests[security]==2.18.4',
'Events==0.3',
'websocket-client>=0.46.0',
'gevent>=1.3a1'
]
setup(
name='bittrex_websocket',
version='0.0.6.3',
author='Stanislav Lazarov',
author_email='[email protected]',
license='MIT',
url='https://github.com/slazarov/python-bittrex-websocket',
packages=find_packages(exclude=['tests*']),
install_requires=install_requires,
description='The unofficial Python websocket client for the Bittrex Cryptocurrency Exchange',
download_url='https://github.com/slazarov/python-bittrex-websocket.git',
keywords=['bittrex', 'bittrex-websocket', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client',
'websocket', 'exchange', 'crypto', 'currency', 'trading'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)