-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.39 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
[tool.poetry]
name = "prez"
version = "0.1.0.dev0"
description = "A python application for displaying linked data on the web"
authors = ["Jamie Feiss <jamie.feiss@gmail.com>", "Nicholas Car <nick@kurrawong.net>", "David Habgood <dcchabgood@gmail.com>"]
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.11"
uvicorn = "^0.21.1"
httpx = "*"
rdflib = "^6.3.1"
connegp = { file = "connegp-0.1.5-py3-none-any.whl" }
async-lru = "^1.0.3"
geojson-rewind = "^1.0.3"
toml = "^0.10.2"
fastapi = "^0.95.0"
python-multipart = "^0.0.6"
jinja2 = "^3.1.2"
oxrdflib = "^0.3.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pre-commit = "^2.15.0"
black = "^22.3.0"
pytest-asyncio = "^0.19.0"
requests = "^2.28.1"
scalene = "^1.5.18"
python-dotenv = "^1.0.0"
pyoxigraph = "^0.3.19"
coverage = "^7.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]