11[build-system ]
2- requires = [" hatchling" ]
32build-backend = " hatchling.build"
3+ requires = [
4+ " hatchling" ,
5+ ]
46
57[project ]
6- name = " django-debug-toolbar"
7- dynamic = [" version" ]
8+ name = " django_debug_toolbar"
89description = " A configurable set of panels that display various debug information about the current request/response."
910readme = " README.rst"
10- license = " BSD-3-Clause"
11- requires-python = " >=3.7"
11+ license = {text = " BSD-3-Clause" }
1212authors = [
1313 {
name =
" Rob Hudson" ,
email =
" [email protected] " },
1414]
15+ requires-python = " >=3.7"
16+ dependencies = [
17+ " Django>=3.2.4" ,
18+ " sqlparse>=0.2" ,
19+ ]
20+ dynamic = [
21+ " version" ,
22+ ]
1523classifiers = [
1624 " Development Status :: 5 - Production/Stable" ,
1725 " Environment :: Web Environment" ,
@@ -31,30 +39,14 @@ classifiers = [
3139 " Programming Language :: Python :: 3.10" ,
3240 " Topic :: Software Development :: Libraries :: Python Modules" ,
3341]
34- dependencies = [
35- " Django >= 3.2.4" ,
36- " sqlparse >= 0.2.0" ,
37- ]
38-
3942[project .urls ]
4043Download = " https://pypi.org/project/django-debug-toolbar/"
4144Homepage = " https://github.com/jazzband/django-debug-toolbar"
4245
43- [tool .hatch .version ]
44- path = " debug_toolbar/__init__.py"
45-
46- [tool .hatch .build .targets .wheel ]
47- packages = [" debug_toolbar" ]
4846
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
5850
5951[tool .coverage .run ]
6052branch = true
@@ -69,6 +61,18 @@ source = ["src", ".tox/*/site-packages"]
6961fail_under = 93
7062show_missing = true
7163
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