-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathsetup.py
35 lines (34 loc) · 1.11 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='finlab-crypto',
version='0.2.27',
author="FinLab",
author_email="finlabstaff@gmail.com",
description="A backtesting framework for crytpo currency",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['finlab_crypto'],
install_requires=[
'numba>=0.53.1',
'pandas>=1.1.5',
'python-binance>=0.7.5',
'pyecharts==1.9.1',
'vectorbt',
'statsmodels>=0.10.2',
'tqdm>=4.41.1',
'seaborn>=0.10.1',
],
python_requires='>=3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)