pyproject.toml 642 B

123456789101112131415161718192021222324
  1. [build-system]
  2. requires = ["setuptools>=61.0"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "llnw-sdk-python"
  6. version = "0.1.2"
  7. authors = [
  8. { name="Example Author", email="opensource@llnw.com" },
  9. ]
  10. description = "Limelight Networks Python SDK"
  11. readme = "README.md"
  12. license = { file="LICENSE" }
  13. requires-python = ">=3.6"
  14. classifiers=[
  15. "Programming Language :: Python :: 3",
  16. "Development Status :: 4 - Beta",
  17. "License :: OSI Approved :: Apache Software License"
  18. ]
  19. [project.urls]
  20. "Homepage" = "https://github.com/llnw/llnw-sdk-python"
  21. "Bug Tracker" = "https://github.com/llnw/llnw-sdk-python/issues"