setup.cfg 739 B

1234567891011121314151617181920212223242526272829
  1. [metadata]
  2. name = petals
  3. version = 1.0alpha1
  4. author = Petals Developers
  5. author_email = petals-dev@googlegroups.com
  6. description = Easy way to efficiently run 100B+ language models without high-end GPUs
  7. long_description = file: README.md
  8. long_description_content_type = text/markdown
  9. url = https://github.com/bigscience-workshop/petals
  10. project_urls =
  11. Bug Tracker = https://github.com/bigscience-workshop/petals/issues
  12. classifiers =
  13. Programming Language :: Python :: 3
  14. License :: OSI Approved :: MIT License
  15. [options]
  16. package_dir =
  17. = src
  18. packages = find:
  19. python_requires = >=3.7
  20. install_requires =
  21. file: requirements.txt
  22. [options.extras_require]
  23. dev =
  24. file: requirements-dev.txt
  25. [options.packages.find]
  26. where = src