pyproject.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.1",
  23. "rdflib~=6.3.2",
  24. "pandas~=2.0.1",
  25. "fastapi~=0.95.2",
  26. "pyarrow~=12.0.0",
  27. "requests~=2.30.0",
  28. "starlette~=0.27",
  29. "python-magic~=0.4.27",
  30. "uvicorn[standard]~=0.22.0",
  31. ]
  32. [project.optional-dependencies]
  33. test = [
  34. "pytest~=7.3.1",
  35. "sparqlwrapper~=2.0.0",
  36. ]
  37. doc = [
  38. "sphinx~=7.0.1",
  39. ]
  40. dev = [
  41. "tox~=4.5.1",
  42. "pip~=23.1.2",
  43. "flit~=3.9.0",
  44. "twine~=4.0.2",
  45. "numpy~=1.24.3",
  46. "invoke~=2.1.2",
  47. "jinja2~=3.1.2",
  48. "flake8~=6.0.0",
  49. "coverage~=7.2.5",
  50. ]
  51. [project.urls]
  52. source = "https://git.rys.one/dtdesign/spendpoint"