-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. conda+pip 迁移到 conda+poetry
- Loading branch information
Showing
12 changed files
with
130 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
__pycache__ | ||
.idea | ||
database | ||
logs | ||
|
||
# Poetry | ||
poetry.lock | ||
.venv/ | ||
dist/ | ||
*.egg-info/ | ||
|
||
# Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
.pytest_cache/ | ||
.coverage | ||
htmlcov/ | ||
|
||
# IDE | ||
.vscode/ | ||
.idea/ | ||
|
||
# Project specific | ||
logs/ | ||
database/ | ||
.pylint_rate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[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" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
# 开发工具 | ||
black = "^23.11.0" # 代码格式化检查 | ||
pylint = "^3.1.0" # 代码质量检查 | ||
colorama = "^0.4.6" # 测试用 | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters