pyproject.toml 901 B

123456789101112131415161718192021222324252627282930313233343536
  1. [build-system]
  2. requires = ["setuptools>=61.0"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "petals"
  6. version = "1.0alpha1"
  7. authors = [
  8. { name="Petals Developers", email="petals-dev@googlegroups.com" },
  9. ]
  10. description = "Easy way to efficiently run 100B+ language models without high-end GPUs"
  11. readme = "README.md"
  12. requires-python = ">=3.7"
  13. classifiers = [
  14. "Programming Language :: Python :: 3",
  15. "License :: OSI Approved :: MIT License",
  16. ]
  17. dynamic = ["dependencies"]
  18. [project.urls]
  19. "Homepage" = "https://github.com/bigscience-workshop/petals"
  20. "Bug Tracker" = "https://github.com/bigscience-workshop/petals/issues"
  21. [tool.setuptools.dynamic]
  22. dependencies = {file = ["requirements.txt"]}
  23. [tool.black]
  24. line-length = 120
  25. required-version = "22.3.0"
  26. [tool.isort]
  27. profile = "black"
  28. line_length = 120
  29. combine_as_imports = true
  30. combine_star = true
  31. known_local_folder = ["tests", "cli"]