-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.76 KB
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
[project]
name = "bridge"
version = "0.1.0"
description = ""
authors = [
{name = "Mariia Steeghs-Turchina"},
{name = "Anna Niehues"},
{name = "Veit Schwämmle"},
{name = "Magnus Palmblad"},
{name = "Ana Mendes"}
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"pydantic-core (>=2.41.4,<3.0.0)",
"fastapi (>=0.120.4,<0.121.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"requests (>=2.32.5,<3.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"typer (>=0.20.0,<0.21.0)",
"huggingface-hub (>=1.0.1,<2.0.0)",
"numpy (>=2.3.4,<3.0.0)",
"sphinxcontrib-mermaid (>=1.2.3,<2.0.0)"
]
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = "^0.35.0"
ruff = "^0.14.2"
black = "^25.9.0"
pre-commit = "^4.3.0"
pytest = "^8.4.2"
pytest-asyncio = "^1.2.0"
pytest-httpx = "^0.35.0"
pytest-cov = "^7.0.0"
cosmic-ray = "^8.4.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.2.3"
sphinx-autodoc-typehints = "^3.5.2"
myst-parser = "^4.0.1"
sphinx-book-theme = "^1.1.4"
sphinx-automodapi = "^0.20.0"
grimp = "^3.12"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{ include = "bridge", from = "src" }]
[tool.poetry.scripts]
lint = "scripts.quality:lint"
fmt = "scripts.quality:fmt"
coverage-report = "scripts.quality:coverage_report"
cosmic-ray-report = "scripts.quality:cosmic_ray_report"
gen-biotools-models = "scripts.gen_models:generate_biotools_models"
gen-github-models = "scripts.gen_models:generate_github_models"
gen-docs = "scripts.gen_docs:main"
gen-diagrams = "scripts.gen_diagrams:main"
gen-process-diagrams = "scripts.gen_process_diagrams:main"
bridge = "bridge.__main__:main_app"