pyproject.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [build-system]
  2. build-backend = "hatchling.build"
  3. requires = ["hatchling", "hatch-requirements-txt"]
  4. [project]
  5. dynamic = ["dependencies"]
  6. description = "AIOS: LLM Agent Operating System"
  7. keywords = ["llm", "os"]
  8. license = {file = "LICENSE"}
  9. name = "aios-core"
  10. readme = "README.md"
  11. requires-python = ">=3.9"
  12. version = "0.0.1.beta2"
  13. classifiers = [
  14. "Development Status :: 4 - Beta",
  15. "Intended Audience :: Developers",
  16. "Topic :: Software Development :: Libraries :: Python Modules",
  17. "License :: OSI Approved :: MIT License",
  18. "Programming Language :: Python :: 3",
  19. "Programming Language :: Python :: 3.9",
  20. "Programming Language :: Python :: 3.10",
  21. "Programming Language :: Python :: 3.11",
  22. ]
  23. [project.urls]
  24. Homepage = "https://github.com/agiresearch/AIOS"
  25. Repository = "https://github.com/agiresearch/AIOS.git"
  26. [project.scripts]
  27. aios = "aios.utils.commands.launch:main"
  28. [tool.hatch.build]
  29. exclude = ["build", "dist", "__pycache__/", ".pytest_cache/"]
  30. [tool.hatch.metadata.hooks.requirements_txt]
  31. files = ["requirements.txt"]
  32. [tool.hatch.build.targets.wheel]
  33. packages = ["aios"]