-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.17 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
[tool.poetry]
name = "qualle"
version = "0.6.0-dev"
description = "A framework to predict the quality of a multi-label classification result"
authors = ["AutoSE <autose@zbw.eu>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
homepage = "https://github.com/zbw/qualle"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
scipy = "~1.15"
numpy = "2.0.0"
scikit-learn = "~1.5"
rdflib = "~7.5"
pydantic = "~2.12"
pydantic-settings = "~2.12"
fastapi = "~0.129"
uvicorn = "~0.40"
[tool.poetry.group.dev.dependencies]
pytest = "~8.4"
pytest-mock = "~3.14"
pytest-cov = "~6.2"
httpx = "*"
black = "~26.1"
pre-commit = "~4.5"
[tool.poetry.group.ci.dependencies]
safety = "~3.7"
bandit = "~1.9"
ruff = "~0.14"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
ignore = ["E203"]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# isort
"I"
]
[tool.coverage.run]
omit = [
"qualle/main.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
qualle = 'qualle.interface.cli:cli_entrypoint'