forked from wagtail/wagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
139 lines (126 loc) · 3.49 KB
/
pyproject.toml
File metadata and controls
139 lines (126 loc) · 3.49 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[build-system]
requires = ["setuptools>=78.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wagtail"
dynamic = ["version"]
description = "A Django content management system."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "Wagtail core team + contributors", email = "hello@wagtail.org" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Framework :: Wagtail",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
dependencies = [
"Django>=5.2",
"django-modelcluster>=6.4.1,<7.0",
"django-permissionedforms>=0.1,<1.0",
"django-taggit>=5.0,<7",
"django-treebeard>=4.5.1,<5.0",
"djangorestframework>=3.15.1,<4.0",
"django-filter>=23.3",
"draftjs_exporter>=2.1.5,<6.0",
"Pillow>=9.1.0",
"beautifulsoup4>=4.8,<5",
"Willow[heif]>=1.11.0,<2",
"requests>=2.11.1,<3.0",
"openpyxl>=3.0.10,<4.0",
"anyascii>=0.1.5",
"telepath>=0.3.1,<1",
"laces>=0.1,<0.2",
"django-tasks>=0.9,<0.12",
"modelsearch>=1.1,<1.2",
]
[project.urls]
Homepage = "https://wagtail.org/"
Documentation = "https://docs.wagtail.org"
Repository = "https://github.com/wagtail/wagtail"
Changelog = "https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt"
"Issue Tracker" = "https://github.com/wagtail/wagtail/issues"
Funding = "https://wagtail.org/sponsor/"
[project.optional-dependencies]
testing = [
# Required for running the tests
"python-dateutil>=2.7",
"Jinja2>=3.0,<3.2",
"boto3>=1.28,<2",
"freezegun>=0.3.8",
"azure-mgmt-cdn>=12.0,<13.0",
"azure-mgmt-frontdoor>=1.0,<1.1",
"django-pattern-library>=0.7",
"responses>=0.25,<1",
# For coverage and PEP8 linting
"coverage>=3.7.0",
"doc8==1.1.2",
"ruff==0.9.6",
# For enforcing string formatting mechanism in source files
"semgrep==1.132.0",
# For templates linting
"curlylint==0.13.1",
# For template indenting
"djhtml==3.0.6",
# For validating string formats in .po translation files
"polib>=1.1,<2.0",
# For wagtail.test.utils.wagtail_factories (used for streamfield migration toolkit)
"factory-boy>=3.2",
# For running tests in parallel
"tblib>=2.0,<3.0",
]
docs = [
"pyenchant>=3.1.1,<4",
"sphinxcontrib-spelling>=7,<8",
"Sphinx>=7.3",
"sphinx-autobuild>=0.6.0",
"sphinx-wagtail-theme==6.5.0",
"myst_parser==2.0.0",
"sphinx_llm>=0.2.1",
]
[project.scripts]
wagtail = "wagtail.bin.wagtail:main"
[tool.doc8]
ignore = ["D001"]
ignore_path = ["_build", "docs/_build"]
[tool.setuptools.packages.find]
include = ["wagtail*"]
[tool.setuptools.package-data]
# https://setuptools.pypa.io/en/latest/userguide/datafiles.html
"wagtail" = ["**/*"]
"*" = [ ".dockerignore",]
[tool.setuptools.data-files]
"." = [
"AGENTS.md",
"CHANGELOG.txt",
"CODE_OF_CONDUCT.md",
"CONTRIBUTORS.md",
"SPONSORS.md",
]
[tool.setuptools.exclude-package-data]
"wagtail" = [
"*.md",
"*.stories.js",
"*.stories.tsx",
"*.py[co]",
"static_src/**",
"**/static_src/**"
]
[tool.setuptools.dynamic]
version = { attr = "wagtail.__version__" }