-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
67 lines (57 loc) · 1.32 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
66
67
[project]
name = "debug-tutorial"
version = "1.0.0"
description = "An example Newsletter application used for a debugging tutorial."
authors = [
{name = "Tim Schilling", email = "schillingt@better-simple.com"}
]
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.11"
dependencies = [
"coverage",
"django-anymail",
"django-coverage-plugin",
"django-debug-toolbar",
"django-environ",
"django-registration-redux",
"factory_boy",
"faker",
"martor",
"mdgen",
"Pillow",
"pre-commit",
"ruff",
]
[project.urls]
Homepage = "https://github.com/tim-schilling/debug-tutorial"
Repository = "https://github.com/tim-schilling/debug-tutorial"
[tool.setuptools]
packages = ["project"]
[tool.coverage.html]
skip_covered = true
skip_empty = true
[tool.coverage.run]
branch = true
parallel = true
source = ["project"]
omit = [
"manage.py",
"project/config/asgi.py",
"project/config/wsgi.py",
"project/data/*",
]
plugins = ["django_coverage_plugin"]
[tool.coverage.django_coverage_plugin]
template_extensions = "html, txt"
[tool.coverage.paths]
source = ["project"]
[tool.coverage.report]
show_missing = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-ignore = ["E501"]
select = ["E", "F", "I", "UP", "DJ"]
[tool.ruff.lint.isort]
combine-as-imports = true