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

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