-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.06 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
[tool.black]
line-length = 120
include = "\\.pyi?$"
exclude = """
/(
\\.eggs
| \\.git
| \\.hg
| \\.mypy_cache
| \\.tox
| \\.venv
| _build
| buck-out
| build
| dist
)/
"""
[tool.isort]
profile = "black"
[tool.poetry]
name = "semantic-kraus-api"
version = "0.2.9"
description = ""
authors = [ "Matthias Schlögl <[email protected]>" ]
license = "MIT"
packages = [{include = "semantic_kraus_api"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "*"
uvicorn = "^0.17.6"
rdflib = "^6.1.1"
pydantic = ">=1.10.2,<2"
SPARQLWrapper = "^1.8.5"
geojson-pydantic = "^0.4.0"
Jinja2 = "^3.1.2"
pymemcache = "^3.5.2"
SPARQLTransformer = "^2.2.0"
sentry-sdk = "^1.6.0"
python-dateutil = "^2.8.2"
gunicorn = "^20.1.0"
aioredis = "^2.0.1"
requests = "^2.28.2"
[tool.poetry.dependencies.fastapi-cache2]
extras = [ "redis" ]
version = "^0.1.9"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
[build-system]
requires = [ "poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"