pyproject.toml 398 B

12345678910111213141516171819
  1. [project]
  2. name = "data-collector-gateway"
  3. version = "0.1.0"
  4. description = "Add your description here"
  5. readme = "README.md"
  6. requires-python = ">=3.12"
  7. dependencies = [
  8. "fastapi>=0.115.0",
  9. "pydantic>=2.13.4",
  10. "pymodbus>=3.13.1",
  11. "uvicorn>=0.32.0",
  12. ]
  13. [project.scripts]
  14. data-collector-api = "main:main"
  15. [[tool.uv.index]]
  16. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  17. default = true