pyproject.toml 923 B

123456789101112131415161718192021222324252627282930
  1. [build-system]
  2. requires = ["setuptools>=61.0"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "pizzasql"
  6. version = "0.1.0"
  7. description = "PizzaSQL client for Python"
  8. readme = "README.md"
  9. license = {text = "MIT"}
  10. requires-python = ">=3.8"
  11. classifiers = [
  12. "Development Status :: 4 - Beta",
  13. "Intended Audience :: Developers",
  14. "License :: OSI Approved :: MIT License",
  15. "Programming Language :: Python :: 3",
  16. "Programming Language :: Python :: 3.8",
  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. keywords = ["pizzasql", "database", "sql", "client"]
  23. [project.optional-dependencies]
  24. httpx = ["httpx>=0.24.0"]
  25. [project.urls]
  26. Homepage = "https://github.com/danfragoso/pizzasql"
  27. Documentation = "https://github.com/danfragoso/pizzasql/tree/main/clients/python"