-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
85 lines (77 loc) · 2.09 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
83
84
85
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-regex-redirects"
version = "0.4.0"
description = "Django redirects, with regular expressions"
authors = [
{name = "Alex de Landgraaf", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Django", "regex"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"django>=3.2",
]
[project.urls]
Homepage = "https://github.com/maykinmedia/django-regex-redirects"
"Bug Tracker" = "https://github.com/maykinmedia/django-regex-redirects/issues"
"Source Code" = "https://github.com/maykinmedia/django-regex-redirects"
[project.optional-dependencies]
tests = [
"tox",
"isort",
"black",
"flake8",
]
[tool.setuptools.packages.find]
include = ["regex_redirects*"]
namespaces = false
[tool.isort]
profile = "black"
combine_as_imports = true
known_django = "django"
known_first_party="regex_redirects"
sections=["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
skip = ["env", ".tox", ".history"]
[tool.coverage.run]
branch = true
source = [
"regex_redirects"
]
omit = [
"regex_redirects/migrations/*",
]
[tool.coverage.report]
exclude_also = [
"if (typing\\.)?TYPE_CHECKING:",
"@(typing\\.)?overload",
"class .*\\(.*Protocol.*\\):",
"@(abc\\.)?abstractmethod",
"raise NotImplementedError",
"\\.\\.\\.",
"pass",
]
omit = [
"regex_redirects/migrations/*",
]
[tool.coverage.html]
directory = "cover"