pyproject.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [build-system]
  2. requires = ["flit_core >=3.2,<4"]
  3. build-backend = "flit_core.buildapi"
  4. [project]
  5. name = "spendpoint"
  6. authors = [
  7. {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
  8. ]
  9. readme = "README.rst"
  10. requires-python = ">=3.9"
  11. classifiers = [
  12. "License :: OSI Approved :: MIT License",
  13. "Programming Language :: Python :: 3",
  14. "Development Status :: 2 - Pre-Alpha",
  15. "Intended Audience :: Developers",
  16. "Natural Language :: English",
  17. ]
  18. dynamic = ["version", "description"]
  19. license = {file = "LICENSE"}
  20. keywords = ["spendpoint"]
  21. dependencies = [
  22. "arklog~=0.5.0",
  23. "rdflib~=6.2.0",
  24. "fastapi~=0.92",
  25. "starlette~=0.25.0",
  26. "python-magic~=0.4.27",
  27. "uvicorn[standard]~=0.20.0",
  28. ]
  29. [project.optional-dependencies]
  30. test = [
  31. "pytest~=7.2.1",
  32. "sparqlwrapper~=2.0.0",
  33. ]
  34. doc = [
  35. "sphinx~=6.1.3",
  36. ]
  37. dev = [
  38. "tox~=4.4.6",
  39. "pip~=23.0.1",
  40. "flit~=3.8.0",
  41. "twine~=4.0.2",
  42. "invoke~=2.0.0",
  43. "jinja2~=3.1.2",
  44. "flake8~=6.0.0",
  45. "coverage~=7.2.1",
  46. ]
  47. [project.urls]
  48. source = "https://git.rys.one/dtdesign/spendpoint"