-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
113 lines (106 loc) · 2.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "feincms3-cookiecontrol"
description = "Cookie Control Panel for GDPR compliant feincms3 websites"
readme = "README.rst"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "York Schickl", email = "ys@feinheit.ch" },
]
requires-python = ">=3.10"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dynamic = [ "version" ]
dependencies = [
"django>=3.2",
"feincms3>=5.2.2",
]
optional-dependencies.tests = [
"coverage",
"requests",
]
urls.Homepage = "https://github.com/feincms/feincms3-cookiecontrol/"
[tool.hatch.build]
include = [ "feincms3_cookiecontrol/" ]
[tool.hatch.version]
path = "feincms3_cookiecontrol/__init__.py"
[tool.ruff]
target-version = "py310"
fix = true
show-fixes = true
extend-select = [
# pyflakes, pycodestyle
"F",
"E",
"W",
# mmcabe
"C90",
# isort
"I",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-2020
"YTT",
# flake8-boolean-trap
"FBT",
# flake8-bugbear
"B",
# flake8-builtins
"A",
# flake8-comprehensions
"C4",
# flake8-django
"DJ",
# flake8-logging-format
"G",
# flake8-pie
"PIE",
# flake8-simplify
"SIM",
# flake8-gettext
"INT",
# pygrep-hooks
"PGH",
# pylint
"PL",
# unused noqa
"RUF100",
]
extend-ignore = [
# Allow zip() without strict=
"B905",
# No line length errors
"E501",
]
mccabe.max-complexity = 15
per-file-ignores."*/migrat*/*" = [
# Allow using PascalCase model names in migrations
"N806",
# Ignore the fact that migration files are invalid module names
"N999",
]
isort.combine-as-imports = true
isort.lines-after-imports = 2