forked from tudorelu/pyjuque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 847 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyjuque',
packages=find_packages(),
version='0.1.1.7',
description="'Juju' Quant Engine for Python",
long_description=long_description,
long_description_content_type="text/markdown",
author='Tudor Barbulescu',
author_email='[email protected]',
license='MIT',
url='https://github.com/tudorelu/pyjuque',
install_requires=['yaspin==1.2.0', 'ccxt==1.40.74', 'pyyaml==5.4', 'numpy==1.19.4', 'pandas==1.1.4', 'plotly==4.12.0', 'python-dotenv==0.15.0' ,'requests==2.25.0', 'SQLAlchemy==1.3.18', 'websocket==0.2.1', 'websocket-client==0.57.0'],
setup_requires=['nose2==0.9.2'],
tests_require=['alchemy-mock==0.4.3', 'coverage==5.1', 'freezegun==0.3.15', 'mock==4.0.2', 'nose2==0.9.2', 'pandas==1.1.4']
)