123456789101112131415161718192021222324252627282930313233343536 |
- [build-system]
- requires = ["setuptools>=61.0"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "petals"
- version = "1.0alpha1"
- authors = [
- { name="Petals Developers", email="petals-dev@googlegroups.com" },
- ]
- description = "Easy way to efficiently run 100B+ language models without high-end GPUs"
- readme = "README.md"
- requires-python = ">=3.7"
- classifiers = [
- "Programming Language :: Python :: 3",
- "License :: OSI Approved :: MIT License",
- ]
- dynamic = ["dependencies"]
- [project.urls]
- "Homepage" = "https://github.com/bigscience-workshop/petals"
- "Bug Tracker" = "https://github.com/bigscience-workshop/petals/issues"
- [tool.setuptools.dynamic]
- dependencies = {file = ["requirements.txt"]}
- [tool.black]
- line-length = 120
- required-version = "22.3.0"
- [tool.isort]
- profile = "black"
- line_length = 120
- combine_as_imports = true
- combine_star = true
- known_local_folder = ["tests", "cli"]
|