-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.06 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.06 KB
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
42
43
44
45
46
47
48
from setuptools import setup, find_packages
from bearalpha import __version__
with open('README.md', 'r') as f:
ldes = f.read()
setup(
name='bearalpha',
packages=find_packages(),
author='ppoak',
author_email='ppoak@foxmail.com',
description='A Quantum Finance Analyze Toolkit',
long_description=ldes,
long_description_content_type='text/markdown',
keywords=['Quantum', 'Finance'],
url="https://github.com/ppoak/BearAlpha",
version=__version__,
install_requires=[
'pandas',
'numpy',
'matplotlib',
'backtrader',
'requests',
'mplfinance',
'rich',
],
extras_require={
"stats": [
"statsmodules",
"sklearn",
"dask",
'scipy',
],
"crawl": [
"akshare",
"baostock",
"dask",
'sqlalchemy',
'bs4',
'diskcache',
]
},
entry_points={
"console_scripts": [
'ba=bearalpha.__main__:main',
]
}
)