-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (75 loc) · 1.87 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wagtail-supertable"
dynamic = ["version"]
description = "An extended wagtail table block."
readme = "README.rst"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{ name = "Freedom of the Press Foundation" },
]
urls = { Homepage = "https://github.com/freedomofpress/wagtail-supertable" }
dependencies = [
"wagtail>=7.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.optional-dependencies]
docs = [
"Sphinx>=7",
"sphinx_rtd_theme>=2.0",
]
test = [
"pytest>=8",
"pytest-django>=4.8",
"beautifulsoup4>=4.12",
"html5lib",
]
[tool.setuptools.packages.find]
include = ["wagtailsupertable*"]
[tool.setuptools.dynamic]
version = { attr = "wagtailsupertable.__version__" }
[tool.ruff]
target-version = "py312"
exclude = [
"node_modules",
]
[tool.ruff.lint]
ignore = ["E501", "E266"]
[tool.ruff.lint.isort]
lines-after-imports = 2
section-order = [
# the default, plus our Django and Wagtail sections
"future",
"standard-library",
"django",
"wagtail",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
"django" = ["django"]
"wagtail" = ["wagtail"]
[tool.pre-commit-update.yaml]
mapping = 2
sequence = 4
offset = 2