-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (78 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
93 lines (78 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "goosebit"
version = "0.2.11"
description = "A simplistic, opinionated remote update server implementing hawkBit™'s DDI API"
authors = [
{name = "Brett Rowan", email = "121075405+b-rowan@users.noreply.github.com"}
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"fastapi (>=0.116.1,<0.118.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"jinja2 (>=3.1.6,<4.0.0)",
"itsdangerous (>=2.2.0,<3.0.0)",
"tortoise-orm (>=0.25.1,<0.26.0)",
"aerich (>=0.9.1,<0.10.0)",
"argon2-cffi (>=25.1.0,<26.0.0)",
"joserfc (>=1.2.2,<2.0.0)",
"semver (>=3.0.4,<4.0.0)",
"libconf (>=2.0.1,<3.0.0)",
"opentelemetry-distro (>=0.57b0,<0.59)",
"opentelemetry-instrumentation-fastapi (>=0.57b0,<0.59)",
"opentelemetry-exporter-prometheus (>=0.57b0,<0.59)",
"aiocache (>=0.12.3,<0.13.0)",
"httpx (>=0.28.1,<0.29.0)",
"pydantic-settings[yaml] (>=2.10.1,<3.0.0)",
"uvicorn (>=0.35.0,<0.37.0)",
"boto3 (>=1.40.8,<2.0.0)",
"pysquashfsimage (>=0.9.0,<1.0.0)",
"zstandard (>=0.24.0,<0.26.0)"
]
[project.optional-dependencies]
postgresql = ["asyncpg (>=0.30.0,<0.31.0)"]
[tool.poetry.group.dev.dependencies]
isort = "^6.0.1"
black = "^25.1.0"
pre-commit = "^4.3.0"
flake8 = "7.3.0"
mypy = "^1.17.1"
types-pyyaml = "^6.0.12.20250809"
faker = "^37.5.3"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.16"
[tool.poetry.group.tests.dependencies]
pytest = "^8.4.1"
pytest-asyncio = "^1.1.0"
pytest-md-report = "^0.7.0"
pytest_httpserver = "^1.1.3"
[tool.poetry.group.goosebit_simple_stats.dependencies]
goosebit-simple-stats = {path = "plugins/goosebit_simple_stats", develop = true}
[tool.poetry.group.goosebit_forwarded_header.dependencies]
goosebit-forwarded-header = {path = "plugins/goosebit_forwarded_header", develop = true}
[project.scripts]
generate-sample-data = "sample_data:main"
[tool.pytest]
asyncio_mode = "auto"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.aerich]
tortoise_orm = "goosebit.db.config.TORTOISE_CONF"
location = "goosebit/db/migrations"
src_folder = "./goosebit"
[tool.mypy]
strict = true
explicit_package_bases = true
plugins = ["pydantic.mypy"]
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
[tool.djlint]
ignore = "H030,H031,H021"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"