-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.6 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
[project]
name = "flame-storage-service"
version = "0.1.8"
description = "Service for handling intermediate files and submitting result files to the FLAME Hub."
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 = [
"minio (>=7.2.0,<8)",
"fastapi[standard] (>=0.115.0,<1)",
"pydantic-settings (>=2.7.0,<3)",
"python-multipart (>=0.0.20,<1)",
"jwcrypto (>=1.5.0,<2)",
"tomli (>=2.2.0,<3)",
"peewee (>=3.17.0,<4)",
"psycopg2-binary (>=2.9.0,<3)",
"cryptography (>=44.0.0,<47)",
"flame-hub-client (>=0.2.0)",
"truststore (>=0.10.1,<1)",
"opendp (>=0.12.1,<0.13.0)",
"readme-coverage-badger (>=1.0.1,<2.0.0)",
]
license = "Apache-2.0"
[project.scripts]
flame-storage = "project.main:run_server"
openapi-spec = "project.main:openapi_spec"
[tool.poetry]
packages = [{ include = "project" }]
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
ruff = ">=0.9.0"
pre-commit = ">=4.0.0"
testcontainers = {extras = ["postgres"], version = ">=4.9.0"}
pytest-env = "^1.5.0"
pytest-cov = "^7.1.0"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
markers = [
"live: mark an integration test that runs against live infra."
]
env_files = [
".env",
".env.test"
]
addopts = "--cov=project --cov-branch"
filterwarnings = [
"ignore:^The @wait_container_is_ready decorator:DeprecationWarning"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"