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 875 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "{{ cookiecutter.package_name }}"
  6. version = "{{ cookiecutter.version }}"
  7. license = {file = "LICENSE-CODE"}
  8. description = "{{ cookiecutter.description }}"
  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. {%- if cookiecutter.depends_on_core -%}
  18. "autogen-core",
  19. {% endif %}
  20. ]
  21. [dependency-groups]
  22. dev = []
  23. [tool.ruff]
  24. extend = "../../pyproject.toml"
  25. include = ["src/**", "tests/*.py"]
  26. [tool.pyright]
  27. extends = "../../pyproject.toml"
  28. include = ["src", "tests"]
  29. [tool.pytest.ini_options]
  30. minversion = "6.0"
  31. testpaths = ["tests"]
  32. [tool.poe]
  33. include = "../../shared_tasks.toml"
  34. [tool.poe.tasks]
  35. test = "pytest -n auto"