-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.02 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
[project]
name = "fsvreader"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Kristoffer Andersson", email = "[email protected]" },
]
dependencies = [
"fastapi[standard]>=0.115.2",
"httpx>=0.27.2",
"pydantic>=2.9.2",
"pydantic-settings>=2.5.2",
"jinja2>=3.1.4",
"karp-api-client",
"lxml>=5.3.0",
"asgi-correlation-id>=4.3.4",
"uvicorn>=0.34.0",
]
readme = "README.md"
requires-python = ">= 3.10"
license = { text = "MIT" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["fsvreader"]
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.8",
"watchfiles>=0.24.0",
"pytest-asyncio>=0.24.0",
"asgi-lifespan>=2.1.0",
"uvicorn>=0.31.1",
"syrupy>=4.7.2",
]
[tool.uv.sources]
karp-api-client = { git = "https://github.com/spraakbanken/karp-api-client-py" }