bc935b41de
## Dependency update summary
Generated: 2026-05-16 16:41 UTC
### Vulnerability scan
Vulnerabilities found:
Name | Version | ID | Fix Versions
--- | --- | --- | ---
pytest | 8.4.2 | CVE-2025-71176 | 9.0.3
Name | Skip Reason
--- | ---
birdcam2 | Dependency not found on PyPI and could not be audited: birdcam2 (0.1.0)
### Outdated packages
The following packages were updated:
Was: markers = {pi = "python_version == \"3.12\""}
Updated: markers = {pi = "python_version < \"3.13\""}
---------
Co-authored-by: Gitea CI <ci@gitea.com>
Reviewed-on: #24
Co-authored-by: Andrew Kettel <andrew.kettel@gmail.com>
Co-committed-by: Andrew Kettel <andrew.kettel@gmail.com>
69 lines
2.1 KiB
TOML
69 lines
2.1 KiB
TOML
[tool.poetry]
|
|
name = "birdcam2"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Andrew Kettel <andrew.kettel@gmail.com>"]
|
|
readme = "README.md"
|
|
packages = [{include = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
flask = "^3.0"
|
|
pillow = "^12.1.1"
|
|
gunicorn = "^25.1.0"
|
|
flask-sqlalchemy = "^3.1.1"
|
|
|
|
[tool.poetry.group.pi.dependencies]
|
|
picamera2 = "^0.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^9.0.3"
|
|
pytest-cov = "^7.1.0"
|
|
pytest-flask = "^1.3"
|
|
black = "^26.0"
|
|
ruff = "^0.4"
|
|
mypy = "^1.10"
|
|
pip-audit = "^2.10.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
# ── Black ──────────────────────────────────────────────────────────────────
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ["py312"]
|
|
|
|
# ── Ruff ───────────────────────────────────────────────────────────────────
|
|
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"W", # pycodestyle warnings
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"B", # flake8-bugbear
|
|
"C4", # flake8-comprehensions
|
|
"UP", # pyupgrade
|
|
]
|
|
ignore = ["E501"] # line length handled by black
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["src"]
|
|
|
|
# ── Mypy ───────────────────────────────────────────────────────────────────
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = true
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
ignore_missing_imports = true
|
|
|
|
# ── Pytest ─────────────────────────────────────────────────────────────────
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "--cov=src --cov-report=term-missing"
|