pyproject.toml 426 B

1234567891011121314151617181920
  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. "python-snap7>=3.0.0",
  12. "uvicorn>=0.32.0",
  13. ]
  14. [project.scripts]
  15. data-collector-api = "main:main"
  16. [[tool.uv.index]]
  17. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  18. default = true