-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wagtail-neuralyzer"
version = "0.2.6"
description = "Anonymize specific django model for specific instance - support for wagtail"
authors = [
{name = "WebU dev team", email = "contact@webu.coop"},
]
readme = "README.md"
requires-python = ">= 3.6"
dependencies = [
"django>=2.2",
"wagtail",
"django-neuralyzer",
]
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
keywords=["django", "wagtail", "anonymize"]
[project.urls]
Homepage = "https://github.com/webu/wagtail-neuralyzer"
Issues = "https://github.com/webu/wagtail-neuralyzer/issues"
[tool.ruff]
include = ["pyproject.toml", "wagtail_neuralyzer/**/*.py"]
line-length = 99
extend-exclude = [
"__pycache__",
"migrations"
]
[tool.ruff.lint]
select = [
"F401", # unused imports
"I",
] # https://docs.astral.sh/ruff/rules
[tool.ruff.lint.isort]
length-sort = false
force-single-line = true
force-sort-within-sections = true
section-order = ["future", "standard-library", "pylib", "django", "third-party", "first-party", "local-folder"]
[tool.ruff.lint.isort.sections]
"django" = ["django"]