12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "spendpoint"
- authors = [
- {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
- ]
- readme = "README.rst"
- requires-python = ">=3.9"
- classifiers = [
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python :: 3",
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- ]
- dynamic = ["version", "description"]
- license = {file = "LICENSE"}
- keywords = ["spendpoint"]
- dependencies = [
- "fastapi~=0.92",
- "starlette~=0.25.0",
- "python-magic~=0.4.27",
- "rdflib-endpoint~=0.2.7",
- "uvicorn[standard]~=0.20.0",
- ]
- [project.optional-dependencies]
- test = [
- "pytest~=7.2.1",
- ]
- doc = [
- "sphinx~=6.1.3",
- ]
- dev = [
- "tox~=4.4.6",
- "pip~=23.0.1",
- "flit~=3.8.0",
- "twine~=4.0.2",
- "invoke~=2.0.0",
- "jinja2~=3.1.2",
- "flake8~=6.0.0",
- "coverage~=7.2.1",
- ]
- [project.urls]
- source = "https://git.rys.one/dtdesign/spendpoint"
|