-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.68 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "prez"
version = "4.1.2"
description = "A python application for displaying linked data on the web"
authors = ["Jamie Feiss <[email protected]>", "Nicholas Car <[email protected]>", "David Habgood <[email protected]>"]
packages = [
{ include = "prez" },
{ include = "pyproject.toml", format = "wheel", to="prez" },
]
include = [
{ path = "./*.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
{ path = "demo", format = "sdist" },
{ path = "dev", format = "sdist" },
{ path = "tests", format = "sdist" },
{ path = "poetry.lock", format = "sdist" },
{ path = "./*.whl", format = "sdist" },
{ path = "*.toml", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.12"
uvicorn = {version = "^0.32.1", optional = true }
httpx = "^0.27.0"
rdflib = "^7.0.0"
toml = "^0.10.2"
fastapi = "^0.115.5"
jinja2 = "^3.1.2"
pydantic = "^2.10.2"
pydantic-settings = "^2.5.0"
pyld = "^2.0.4"
aiocache = "^0.12.2"
sparql-grammar-pydantic = "^0.1.2"
rdf2geojson = {git = "https://github.com/Kurrawong/rdf2geojson.git", rev = "v0.3.0"}
python-multipart = "^0.0.17"
pyoxigraph = "^0.4.4"
oxrdflib = {git = "https://github.com/oxigraph/oxrdflib.git", rev = "main"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pre-commit = "^2.15.0"
black = "^24.4.2"
pytest-asyncio = "^0.23.7"
requests = "^2.28.1"
python-dotenv = "^1.0.0"
coverage = "^7.3.2"
tabulate = "^0.9.0"
ogctests = "^0.1.15"
[tool.poetry.extras]
server = ["uvicorn"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[pytest]
pythonpath = ["prez"]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"