Files
2026-05-22 09:34:49 +08:00

28 lines
481 B
TOML

[project]
name = "ashare-data"
version = "0.1.0"
description = "A股数据抓取,保存到MySQL数据库"
requires-python = ">=3.10"
dependencies = [
"pymysql",
"sqlalchemy>=2.0",
"pyyaml",
"pandas",
"requests",
"baostock>=0.9.1",
"akshare>=1.18.60",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
]
[project.scripts]
ashare = "src.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra"