-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.69 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
[project]
name = 'wagtail-link-block'
version = '1.2'
description = 'A Block for Wagtail that lets users choose a Page/Document/URL/email/etc. as a link'
readme = 'README.md'
maintainers = [{ name = 'The Developer Society', email = 'studio@dev.ngo' }]
requires-python = '>= 3.10'
dependencies = [
'Wagtail>=6.3',
]
license = 'BSD-3-Clause'
classifiers = [
'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 :: 4.2',
'Framework :: Django :: 5.1',
'Framework :: Django :: 5.2',
'Framework :: Wagtail :: 6',
'Framework :: Wagtail :: 7',
]
[project.urls]
Homepage = "https://github.com/developersociety/wagtail-link-block"
[build-system]
requires = ['setuptools >= 77.0.3']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
include = ['wagtail_link_block*']
[tool.ruff]
line-length = 99
target-version = 'py39'
[tool.ruff.lint]
select = [
'F', # pyflakes
'E', # pycodestyle
'W', # pycodestyle
'I', # isort
'N', # pep8-naming
'UP', # pyupgrade
'S', # flake8-bandit
'BLE', # flake8-blind-except
'C4', # flake8-comprehensions
'EM', # flake8-errmsg
'T20', # flake8-print
'RET', # flake8-return
'RUF', # ruff
]
ignore = [
'EM101', # flake8-errmsg: raw-string-in-exception
]
[tool.ruff.lint.isort]
combine-as-imports = true