27 lines
539 B
TOML
27 lines
539 B
TOML
|
|
[project]
|
||
|
|
name = "emcp-backend"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "RK3568 电气量测控平台后端骨架"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.8"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.115,<1.0",
|
||
|
|
"uvicorn[standard]>=0.30,<1.0",
|
||
|
|
"pydantic>=2.7,<3.0",
|
||
|
|
"pydantic-settings>=2.3,<3.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.2,<9.0",
|
||
|
|
"httpx>=0.27,<1.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
pythonpath = ["."]
|
||
|
|
testpaths = ["tests"]
|