pyproject.toml 754 B

1234567891011121314151617181920212223
  1. [build-system]
  2. requires = [ "setuptools" ]
  3. [project]
  4. name = "example_library"
  5. version = "1.0.0"
  6. authors = [ { name = "Taipy" } ]
  7. description = "A Taipy GUI extension library example."
  8. readme = { file = "README.md", content-type = "text/markdown" }
  9. requires-python = ">=3.9"
  10. keywords = [ "taipy" ]
  11. license = { text = "Apache License 2.0" }
  12. classifiers = [
  13. "Intended Audience :: Developers",
  14. # "License :: OSI Approved :: Apache Software License",
  15. "Natural Language :: English",
  16. "Programming Language :: Python :: 3",
  17. "Programming Language :: Python :: 3.9",
  18. "Programming Language :: Python :: 3.10",
  19. "Programming Language :: Python :: 3.11",
  20. "Programming Language :: Python :: 3.12",
  21. ]
  22. dependencies = [ "taipy-gui>=2.2" ]