1
1
[build-system ]
2
- requires = [" hatchling" ]
3
2
build-backend = " hatchling.build"
3
+ requires = [
4
+ " hatchling" ,
5
+ ]
4
6
5
7
[project ]
6
- name = " django-debug-toolbar"
7
- dynamic = [" version" ]
8
+ name = " django_debug_toolbar"
8
9
description = " A configurable set of panels that display various debug information about the current request/response."
9
10
readme = " README.rst"
10
- license = " BSD-3-Clause"
11
- requires-python = " >=3.7"
11
+ license = {text = " BSD-3-Clause" }
12
12
authors = [
13
13
{
name =
" Rob Hudson" ,
email =
" [email protected] " },
14
14
]
15
+ requires-python = " >=3.7"
16
+ dependencies = [
17
+ " Django>=3.2.4" ,
18
+ " sqlparse>=0.2" ,
19
+ ]
20
+ dynamic = [
21
+ " version" ,
22
+ ]
15
23
classifiers = [
16
24
" Development Status :: 5 - Production/Stable" ,
17
25
" Environment :: Web Environment" ,
@@ -31,30 +39,14 @@ classifiers = [
31
39
" Programming Language :: Python :: 3.10" ,
32
40
" Topic :: Software Development :: Libraries :: Python Modules" ,
33
41
]
34
- dependencies = [
35
- " Django >= 3.2.4" ,
36
- " sqlparse >= 0.2.0" ,
37
- ]
38
-
39
42
[project .urls ]
40
43
Download = " https://pypi.org/project/django-debug-toolbar/"
41
44
Homepage = " https://github.com/jazzband/django-debug-toolbar"
42
45
43
- [tool .hatch .version ]
44
- path = " debug_toolbar/__init__.py"
45
-
46
- [tool .hatch .build .targets .wheel ]
47
- packages = [" debug_toolbar" ]
48
46
49
- [tool .hatch .build .targets .sdist ]
50
- include = [
51
- " /debug_toolbar" ,
52
- " /CONTRIBUTING.md" ,
53
- ]
54
-
55
- [tool .isort ]
56
- combine_as_imports = true
57
- profile = " black"
47
+ [tool .coverage .html ]
48
+ skip_covered = true
49
+ skip_empty = true
58
50
59
51
[tool .coverage .run ]
60
52
branch = true
@@ -69,6 +61,18 @@ source = ["src", ".tox/*/site-packages"]
69
61
fail_under = 93
70
62
show_missing = true
71
63
72
- [tool .coverage .html ]
73
- skip_covered = true
74
- skip_empty = true
64
+ [tool .hatch .build .targets .sdist ]
65
+ include = [
66
+ " /debug_toolbar" ,
67
+ " /CONTRIBUTING.md" ,
68
+ ]
69
+
70
+ [tool .hatch .build .targets .wheel ]
71
+ packages = [" debug_toolbar" ]
72
+
73
+ [tool .hatch .version ]
74
+ path = " debug_toolbar/__init__.py"
75
+
76
+ [tool .isort ]
77
+ combine_as_imports = true
78
+ profile = " black"
0 commit comments