-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (37 loc) · 962 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
40
41
42
43
44
45
[tool.poetry]
name = "qualle"
version = "0.3.1-dev"
description = "A framework to predict the quality of a multi-label classification result"
authors = ["AutoSE <[email protected]>"]
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.9,<3.13"
scipy = "~1.13"
numpy = "~1.26"
scikit-learn = "~1.5"
rdflib = "7.0.*"
pydantic = "~2.8"
pydantic-settings = "~2.4"
fastapi = "~0.110"
uvicorn = "~0.22"
[tool.poetry.group.dev.dependencies]
pytest = "~7.2"
pytest-mock = "~3.10"
pytest-cov = "~4.0"
httpx = "*"
black = "^24.3"
[tool.poetry.group.ci.dependencies]
safety = "~3.2"
bandit = "~1.7"
flake8 = "~5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
qualle = 'qualle.interface.cli:cli_entrypoint'