-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
82 lines (74 loc) · 1.84 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wagtail-srcset"
authors = [
{name = "Jochen Wersdörfer", email = "[email protected]"},
{name = "Johannes Spielmann", email = "[email protected]"},
]
dynamic = ["version", "description"]
requires-python = ">=3.10"
keywords = [
"wagtail",
"responsive",
"images",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Topic :: Internet",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"wagtail >= 4",
]
[project.optional-dependencies]
test = [
"pytest >= 6",
"pytest-cov >= 3",
"pytest-django",
]
doc = [
"sphinx-rtd-theme",
]
dev = [
"black",
"flake8",
"django-environ",
"django_extensions",
"isort",
"jupyter",
"jupyterlab",
"jupyter-server < 2.0.0",
"notebook",
"pyzmq >= 25.1.1",
"setuptools",
"tox",
"traitlets < 5.10.0", # https://github.com/microsoft/azuredatastudio/issues/24436 - jupyterlab wont work
"typer",
]
[project.urls]
Documentation = "https://wagtail-srcset.readthedocs.io/en/latest/"
Source = "https://github.com/ephes/wagtail_srcset"
[tool.flit.module]
name = "wagtail_srcset"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
minversion = "6.0"
testpaths = ["tests"]
filterwarnings = [
"ignore::django.utils.deprecation.RemovedInDjango50Warning",
"ignore::DeprecationWarning",
]