-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
57 lines (49 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-managerie"
dynamic = ["version"]
description = "Expose Django management commands in the admin"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "Aarni Koskela", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"Django>=3.2",
]
[project.urls]
Homepage = "https://github.com/akx/django-managerie"
[tool.hatch.version]
path = "django_managerie/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/django_managerie",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "managerie_test_app.settings"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = [
"COM",
"C9",
"E",
"F",
"I",
"W",
]
[tool.ruff.lint.mccabe]
max-complexity = 10