-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 958 Bytes
/
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
[tool.poetry]
name = "firm-server"
version = "0.2.0"
description = "Starlette-based HTTP Server for the FIRM project"
authors = ["Steve Bate <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
firm = {path = "../firm", develop = true}
starlette = "^0.38.2"
uvicorn = "^0.30.6"
colorama = "^0.4.6"
coloredlogs = "^15.0.1"
python-dotenv = "^1.0.1"
pyyaml = "^6.0.2"
dacite = "^1.8.1"
python-mimeparse = "^2.0.0"
jinja2 = "^3.1.4"
firm-ld = {path = "../firm-ld", develop = true}
oxrdflib = "^0.3.7"
firm-jsonschema = {path = "../firm-jsonschema", develop = true}
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
pytest = "^8.3.2"
pytest-httpx = "^0.30.0"
pytest-asyncio = "^0.24.0"
types-pyyaml = "^6.0.12.20240808"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
firm = "firm_server.cli.main:cli"
[tool.pytest.ini_options]
asyncio_mode = "auto"