-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (71 loc) · 1.43 KB
/
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
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
[project]
name = "symfexit"
version = "0.1.0"
description = ""
authors = [
{name = "Jelle Besseling", email = "[email protected]"}
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
]
dependencies = [
"dj-database-url ~= 2.1",
"django ~= 5.0",
"django-constance ~= 4.1",
"django-tailwind ~= 3.4",
"django-tinymce ~= 4.0",
"fontawesomefree ~= 6.2",
"hashids ~= 1.3",
"mollie-api-python ~= 3.6",
"pillow ~= 11.0",
"psycopg[c] ~= 3.2.1",
"django-tenants ~= 3.7.0"
]
requires-python = ">= 3.12"
optional-dependencies.dev = [
"black",
"django-browser-reload ~= 1.6",
"isort",
"pip-tools",
"ruff>=0.6.8",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools.packages.find]
namespaces = true
include = ["symfexit"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py312']
exclude = 'node_modules'
[tool.ruff]
line-length = 100
target-version = "py312"
exclude = ["**/migrations/**", "**/node_modules/**"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# isort
"I",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# django
"DJ",
# pylint
"PL",
]
[tool.ruff.lint.pylint]
max-args = 7
max-branches = 18
max-returns = 10