You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
398 B
23 lines
398 B
[project]
|
|
name = "emwebapi"
|
|
version = "0.1.0"
|
|
description = "东方财富 CHOICE API 数据抓取工具集"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"requests>=2.31",
|
|
"pandas>=2.0",
|
|
"tqdm>=4.66",
|
|
"fastapi>=0.110",
|
|
"uvicorn>=0.27",
|
|
"pydantic>=2.5",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|
|
|
|
|