-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.07 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
[project]
name = "bss-web-file-server"
version = "1.0.0"
description = "BSS file server API"
authors = [{ name = "Bence Csik", email = "22349790+csikb@users.noreply.github.com" }]
requires-python = "==3.14.5"
dependencies = [
"fastapi[standard-no-fastapi-cloud-cli]==0.136.1",
"pillow==12.2.0",
# this should be part of standard-no-fastapi-cloud-cli, but is missing:
# see: https://github.com/fastapi/fastapi/blob/6fae64ff49e8328048872714652a4dfa15406e41/pyproject.toml#L94-L98
"pydantic-settings==2.14.1",
# for Python 3.14 compatibility:
"uvloop>=0.22.0",
"pydantic_core>=2.40.0",
]
[dependency-groups]
dev = [
"black==26.5.1",
"isort==8.0.1",
"mypy==1.20.2",
"pylint==4.0.5",
"pre-commit==4.6.0",
"pytest==9.0.3",
"pytest-cov==7.1.0",
"pytest-mock==3.15.1",
"testcontainers==4.14.2",
]
[build-system]
requires = ["uv_build==0.11.16"]
build-backend = "uv_build"
module-name = ["bss_web_file_server"]
[tool.pytest]
addopts = [
"--import-mode=importlib",
]
[tool.isort]
profile = "black"
[tool.mypy]
packages = "src"