-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 946 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
30
31
32
33
34
35
36
37
from setuptools import setup
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name='sua',
version='1.0.8',
description='Stochastic Unified Assistant (a.k.a SUA).\n It calculates the automatic portfolio optimazation, the prediction and the other stats.',
py_modules=['sua'],
#package_dir={'': 'src'},
long_description=long_description,
long_description_content_type="text/markdown",
url='https://https://github.com/kingsman1960/Sua',
author="Youngwon Cho",
author_email="[email protected]",
license='MIT',
install_requires=[
'numpy',
'matplotlib',
'datetime',
'empyrical',
'quantstats',
'yfinance',
'ipython',
'fpdf',
'pyportfolioopt',
'darts',
'prophet',
'pandas',
'cvxpy',
'scikit-learn',
],
)