-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (32 loc) · 910 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "rechnung"
version = "0.3.1"
description = ""
authors = ["Segelzwerg <25705862+Segelzwerg@users.noreply.github.com>", "iTitus <iTitus@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.1"
django-bootstrap5 = "^24.3"
reportlab = "^4.2"
schwifty = "^2025.1"
gunicorn = "^23.0"
psycopg = { extras = ["binary"], version = "^3.2" }
[tool.poetry.group.dev.dependencies]
pylint = "^3.3"
bandit = "^1.8"
flake8 = "^7.1"
coverage = "^7.6"
pylint-django = "^2.6"
hypothesis = "^6.124"
[tool.poetry.group.doc.dependencies]
sphinx = "^8.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = ["*/migrations", "*/tests.py", "*/*settings.py"]
[tool.pylint]
max-line-length = 120
load-plugins = "pylint_django"
ignore-paths = [".*/migrations", ".*/.*settings.py", ".*/tests.py"]