You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "component-schema-gen"
  6. version = "0.1.0"
  7. license = {file = "LICENSE-CODE"}
  8. description = "Generates a JSON schema for component config"
  9. readme = "README.md"
  10. requires-python = ">=3.10"
  11. classifiers = [
  12. "Programming Language :: Python :: 3",
  13. "License :: OSI Approved :: MIT License",
  14. "Operating System :: OS Independent",
  15. ]
  16. dependencies = [
  17. "autogen-core",
  18. "autogen-ext",
  19. ]
  20. [project.scripts]
  21. gen-component-schema = "component_schema_gen.__main__:main"
  22. [tool.ruff]
  23. extend = "../../pyproject.toml"
  24. include = ["src/**"]
  25. [tool.ruff.lint]
  26. ignore = ["T201"]
  27. [tool.pyright]
  28. extends = "../../pyproject.toml"
  29. include = ["src"]
  30. [tool.poe]
  31. include = "../../shared_tasks.toml"
  32. [tool.poe.tasks]
  33. mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
  34. test = "true"