forked from krakenfx/kraken-wsclient-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 1.24 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
from setuptools import setup
setup(name='kraken-wsclient-py',
version='0.0.4',
description='Sample Kraken WebSockets client',
url='http://github.com/krakenfx/kraken-wsclient-py',
author='Kraken',
author_email='engineering@kraken.com',
license='MIT',
packages=['kraken_wsclient_py'],
python_requires='>=3',
install_requires=[
'asn1crypto==0.24.0',
'attrs==18.2.0',
'autobahn==19.1.1',
'Automat==0.7.0',
'cffi==1.11.5',
'constantly==15.1.0',
'cryptography==2.4.2',
'hyperlink==18.0.0',
'idna==2.8',
'incremental==17.5.0',
'pyasn1==0.4.5',
'pyasn1-modules==0.2.3',
'pycparser==2.19',
'PyHamcrest==1.9.0',
'pyOpenSSL==18.0.0',
'service-identity==18.1.0',
'six==1.12.0',
'Twisted==18.9.0',
'txaio==18.8.1',
'zope.interface==4.6.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='kraken websockets',
zip_safe=False)