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 1.1 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-ext"
  6. version = "0.4.0dev1"
  7. license = {file = "LICENSE-CODE"}
  8. description = "AutoGen extensions library"
  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==0.4.0dev1",
  18. ]
  19. [project.optional-dependencies]
  20. langchain-tools = ["langchain >= 0.3.1"]
  21. azure-code-executor = ["azure-core"]
  22. docker-code-executor = ["docker~=7.0"]
  23. [tool.hatch.build.targets.wheel]
  24. packages = ["src/autogen_ext"]
  25. [tool.uv]
  26. dev-dependencies = []
  27. [tool.ruff]
  28. extend = "../../pyproject.toml"
  29. include = ["src/**", "tests/*.py"]
  30. [tool.pyright]
  31. extends = "../../pyproject.toml"
  32. include = ["src", "tests"]
  33. [tool.pytest.ini_options]
  34. minversion = "6.0"
  35. testpaths = ["tests"]
  36. [tool.poe]
  37. include = "../../shared_tasks.toml"
  38. [tool.poe.tasks]
  39. test = "pytest -n auto"
  40. [tool.mypy]
  41. [[tool.mypy.overrides]]
  42. module = "docker.*"
  43. ignore_missing_imports = true