pyproject.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "toml~=0.10.2",
  23. "arklog~=0.5.1",
  24. "rdflib~=7.0.0",
  25. "pandas~=2.0.1",
  26. "dacite~=1.8.1",
  27. "fastapi~=0.101.1",
  28. "pyarrow~=12.0.1",
  29. "requests~=2.31.0",
  30. "starlette<=0.28.0",
  31. "python-magic~=0.4.27",
  32. "uvicorn[standard]~=0.23.2",
  33. ]
  34. [project.optional-dependencies]
  35. test = [
  36. "pytest~=7.4.0",
  37. "sparqlwrapper~=2.0.0",
  38. ]
  39. doc = [
  40. "sphinx~=7.1.2",
  41. ]
  42. dev = [
  43. "tox~=4.6.4",
  44. "pip~=23.2.1",
  45. "flit~=3.9.0",
  46. "twine~=4.0.2",
  47. "numpy~=1.25.2",
  48. "invoke~=2.2.0",
  49. "jinja2~=3.1.2",
  50. "flake8~=6.1.0",
  51. "coverage~=7.2.7",
  52. ]
  53. [project.urls]
  54. source = "https://git.rys.one/dtdesign/spendpoint"