pyproject.toml 292 B

12345678910111213141516
  1. [build-system]
  2. requires = ["setuptools >= 69"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "paddlex-hps-server"
  6. version = "0.3.0"
  7. # `paddlex` is not included here
  8. dependencies = [
  9. "colorlog >= 6.9",
  10. "pydantic >= 2",
  11. ]
  12. [tool.isort]
  13. profile = "black"
  14. src_paths = ["src"]