forked from 0xemmkty/QuantMuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (62 loc) · 1.44 KB
/
setup.py
File metadata and controls
63 lines (62 loc) · 1.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
setup(
name="data_service",
version="0.1",
packages=find_packages(),
install_requires=[
'pandas',
'numpy',
'python-binance>=1.0.0',
'websocket-client>=1.0.0',
'websockets>=10.0',
'aiohttp>=3.8.0',
'alpha_vantage',
'fastapi',
'uvicorn',
'redis',
'requests',
'textblob',
'openpyxl'
],
extras_require={
'test': [
'pytest',
'pytest-cov',
'pytest-asyncio'
],
'ai': [
'openai',
'langchain',
'langchain-openai',
'langchain-community',
'transformers',
'torch',
'sentence-transformers',
'accelerate',
'spacy',
'nltk',
'textblob',
'scikit-learn',
'wordcloud'
],
'visualization': [
'matplotlib>=3.5.0',
'seaborn>=0.11.0',
'plotly>=5.0.0',
'streamlit>=1.20.0',
'kaleido>=0.2.1' # 用于Plotly静态图片导出
],
'realtime': [
'websockets>=10.0',
'aiohttp>=3.8.0',
'asyncio-mqtt>=0.11.0',
'redis>=4.0.0'
],
'web': [
'fastapi',
'uvicorn[standard]',
'jinja2',
'aiofiles'
]
}
)