-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 883 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import join, dirname
here = dirname(__file__)
setup(name='pryno',
version='0.1.7',
description='BitMEX autonomous trading using Keep Alive HTTP + Plot.ly Dash + Telegram API.',
long_description=open(join(here, 'README.md')).read(),
author='canokaue & claudiovb',
author_email='[email protected]',
url='quan.digital',
install_requires=[
'requests==2.23.0',
'websocket-client==0.57.0',
'requests==2.23.0',
'schedule==0.6.0',
'dash==1.11.0',
'flask-login==0.5.0',
'dash-auth==1.3.2',
'dash-core-components==1.9.1',
'dash-html-components==1.0.3',
'python-telegram-bot==12.7',
'pymongo==3.10.1',
'dnspython==1.16.0'
],
packages=find_packages(),
)