[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "petals" version = "1.0alpha1" authors = [ { name="Alexander Borzunov", email="borzunov.alexander@gmail.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"]