-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (41 loc) · 1.09 KB
/
pyproject.toml
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
[tool.poetry]
name = "fund-analysis"
version = "0.1.0"
description = "基金分析系统"
authors = ["Fan Yefei <[email protected]>"]
[tool.poetry.dependencies]
python = "~3.10"
# Web框架
dash = {version = "^2.18.1", extras = ["compress"]}
"dash-bootstrap-components" = "^1.5.0"
plotly = "^5.18.0"
"feffery-antd-components" = "^0.3.8"
"feffery-dash-utils" = "^0.1.4"
"feffery-markdown-components" = "^0.3.0rc3"
"feffery-utils-components" = "^0.2.0rc20"
# 服务端
Flask = "^3.0.3"
"flask-restx" = "^1.3.0"
# 网络
requests = "^2.32.3"
# 数据处理
pandas = "^2.2.3"
numpy = "^1.26.2"
"beautifulsoup4" = "^4.12.3"
"flask-apscheduler" = "^1.13.1"
# 数据库
peewee = "^3.17.0"
playhouse = "^0.1.0"
[tool.poetry.group.dev.dependencies]
# 开发工具
black = "^23.11.0" # 代码格式化检查
pylint = "^3.1.0" # 代码质量检查
colorama = "^0.4.6" # 测试用
isort = "^5.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"