-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (78 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (78 loc) · 2.24 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.12"
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.138.0)",
"python-multipart (>=0.0.32)",
"jinja2>=3.1.6",
"itsdangerous>=2.2.0",
"tortoise-orm (>=0.25.4,<1.0.0)",
"aerich>=0.9.2",
"argon2-cffi>=25.1.0",
"joserfc (>=1.7.1)",
"semver>=3.0.4",
"libconf>=2.0.1",
"opentelemetry-distro (>=0.63b1)",
"opentelemetry-instrumentation-fastapi (>=0.63b1)",
"opentelemetry-exporter-prometheus (>=0.63b1)",
"aiocache>=0.12.3",
"httpx>=0.28.1",
"pydantic-settings[yaml] (>=2.14.2)",
"uvicorn (>=0.49.0)",
"boto3 (>=1.43.36)",
"pysquashfsimage>=0.9.0",
"zstandard (>=0.25.0)",
]
[project.optional-dependencies]
postgresql = ["asyncpg (>=0.30.0,<0.31.0)"]
[tool.poetry.group.dev.dependencies]
isort = "^8.0.1"
black = "^26.5.1"
pre-commit = "^4.6.0"
flake8 = "7.3.0"
mypy = "^2.1.0"
types-pyyaml = "^6.0.12.20260518"
faker = "^40.23.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.7.6"
[tool.poetry.group.tests.dependencies]
pytest = "^9.1.1"
pytest-asyncio = "^1.4.0"
pytest-md-report = "^0.8.0"
pytest_httpserver = "^1.1.5"
[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"