-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.67 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 = "flame-hub-client"
version = "0.2.15"
description = "HTTP client for interacting with FLAME Hub services."
authors = [
{ name = "Maximilian Jugl", email = "Maximilian.Jugl@medizin.uni-leipzig.de" },
{ name = "Paul Brassel", email = "Paul.Brassel@medizin.uni-leipzig.de" }
]
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"pydantic[email] (>=2.12.5,<3.0.0)",
"httpx (>=0.28.0,<0.29.0)",
"httpcore (>=1.0.9,<2.0.0)", # dep of httpx, contains vulnerable h11 dep so needs to be patched here
]
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta"
]
[project.urls]
homepage = "https://privateaim.de/"
documentation = "https://privateaim.github.io/hub-python-client/"
repository = "https://github.com/PrivateAIM/hub-python-client/"
[tool.poetry]
packages = [{ include = "flame_hub" }]
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
ruff = ">=0.9.0"
pre-commit = ">=4.0.0"
testcontainers = { extras = ["minio", "mysql", "rabbitmq", "redis", "vault"], version = ">=4.9.0" }
pytest-dotenv = ">=0.5.0"
pytest-cov = "^7.1.0"
readme-coverage-badger = "^1.0.1"
[tool.poetry.group.docs.dependencies]
sphinx = "8.1.3"
sphinx-rtd-theme = "^3.0.2"
sphinx-autobuild = "^2024.10.3"
numpydoc = "^1.8.0"
myst-parser = "^4.0.1"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
markers = [
"integration: mark a test as an integration test."
]
env_files = [
".env",
".env.test"
]
filterwarnings = [
"ignore:^The @wait_container_is_ready decorator:DeprecationWarning"
]
addopts = "--cov=flame_hub --cov-branch"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"