1+ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2+ # For details: https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
3+
4+ [build-system ]
5+ requires = [" setuptools>=61.0" , " wheel" ]
6+ build-backend = " setuptools.build_meta"
7+
8+ [project ]
9+ name = " django_coverage_plugin"
10+ description = " Django template coverage.py plugin"
11+ readme = " README.rst"
12+ authors = [
13+ {
name =
" Ned Batchelder" ,
email =
" [email protected] " },
14+ ]
15+ license = " Apache-2.0"
16+ classifiers = [
17+ " Development Status :: 5 - Production/Stable" ,
18+ " Environment :: Console" ,
19+ " Framework :: Django" ,
20+ " Framework :: Django :: 2.2" ,
21+ " Framework :: Django :: 3.2" ,
22+ " Framework :: Django :: 4.2" ,
23+ " Framework :: Django :: 5.2" ,
24+ " Intended Audience :: Developers" ,
25+ " Operating System :: OS Independent" ,
26+ " Programming Language :: Python :: 3.9" ,
27+ " Programming Language :: Python :: 3.10" ,
28+ " Programming Language :: Python :: 3.11" ,
29+ " Programming Language :: Python :: 3.12" ,
30+ " Programming Language :: Python :: 3.13" ,
31+ " Programming Language :: Python :: Implementation :: CPython" ,
32+ " Programming Language :: Python :: Implementation :: PyPy" ,
33+ " Topic :: Software Development :: Quality Assurance" ,
34+ " Topic :: Software Development :: Testing" ,
35+ ]
36+ requires-python = " >= 3.9"
37+ dependencies = [
38+ " coverage" ,
39+ ]
40+ dynamic = [" version" ]
41+
42+ [project .urls ]
43+ "Homepage" = " https://github.com/nedbat/django_coverage_plugin"
44+ "Bug Tracker" = " https://github.com/nedbat/django_coverage_plugin/issues"
45+ "Source" = " https://github.com/nedbat/django_coverage_plugin"
46+
47+ [tool .setuptools .dynamic ]
48+ version = {attr = " django_coverage_plugin.__version__" }
49+
50+ [tool .setuptools .packages .find ]
51+ include = [" django_coverage_plugin*" ]
52+
53+ [tool .pytest .ini_options ]
54+ # How come these warnings are suppressed successfully here, but not in conftest.py??
55+ filterwarnings = [
56+ # ignore all DeprecationWarnings...
57+ " ignore::DeprecationWarning" ,
58+ # ...but show them if they are from our code.
59+ " default::DeprecationWarning:django_coverage_plugin" ,
60+ ]
61+
62+ [tool .scriv ]
63+ fragment_directory = " scriv.d"
64+ output_file = " README.rst"
65+ rst_header_chars = " -."
0 commit comments