22build-backend = " hatchling.build"
33requires = [
44 " hatch-vcs" ,
5- " hatchling>=1.26 " ,
5+ " hatchling>=1.27.0 " ,
66]
77
88[project ]
99name = " iniconfig"
1010description = " brain-dead simple config-ini parsing"
1111readme = " README.rst"
1212license = " MIT"
13+ license-files = [" LICENSE" ]
1314authors = [
14- { name = " Ronny Pfannschmidt" , email = " opensource@ronnypfannschmidt.de" },
15- { name = " Holger Krekel" , email = " holger.krekel@gmail.com" },
15+ { name = " Ronny Pfannschmidt" , email = " opensource@ronnypfannschmidt.de" },
16+ { name = " Holger Krekel" , email = " holger.krekel@gmail.com" },
1617]
1718requires-python = " >=3.8"
19+ classifiers = [
20+ " Development Status :: 4 - Beta" ,
21+ " Intended Audience :: Developers" ,
22+ " Operating System :: MacOS :: MacOS X" ,
23+ " Operating System :: Microsoft :: Windows" ,
24+ " Operating System :: POSIX" ,
25+ " Programming Language :: Python :: 3 :: Only" ,
26+ " Programming Language :: Python :: 3.8" ,
27+ " Programming Language :: Python :: 3.9" ,
28+ " Programming Language :: Python :: 3.10" ,
29+ " Programming Language :: Python :: 3.11" ,
30+ " Programming Language :: Python :: 3.12" ,
31+ " Programming Language :: Python :: 3.13" ,
32+ " Topic :: Software Development :: Libraries" ,
33+ " Topic :: Utilities" ,
34+ ]
1835dynamic = [
1936 " version" ,
2037]
21- classifiers = [
22- " Development Status :: 4 - Beta" ,
23- " Intended Audience :: Developers" ,
24- " License :: OSI Approved :: MIT License" ,
25- " Operating System :: MacOS :: MacOS X" ,
26- " Operating System :: Microsoft :: Windows" ,
27- " Operating System :: POSIX" ,
28- " Programming Language :: Python :: 3" ,
29- " Programming Language :: Python :: 3 :: Only" ,
30- " Programming Language :: Python :: 3.8" ,
31- " Programming Language :: Python :: 3.9" ,
32- " Programming Language :: Python :: 3.10" ,
33- " Programming Language :: Python :: 3.11" ,
34- " Programming Language :: Python :: 3.12" ,
35- " Programming Language :: Python :: 3.13" ,
36- " Topic :: Software Development :: Libraries" ,
37- " Topic :: Utilities" ,
38- ]
39- [project .urls ]
40- Homepage = " https://github.com/pytest-dev/iniconfig"
38+ urls.Homepage = " https://github.com/pytest-dev/iniconfig"
4139
40+ [tool .setuptools_scm ]
4241
4342[tool .hatch .version ]
4443source = " vcs"
@@ -48,25 +47,22 @@ version-file = "src/iniconfig/_version.py"
4847
4948[tool .hatch .build .targets .sdist ]
5049include = [
51- " /src" ,
52- " /testing" ,
50+ " /src" ,
51+ " /testing" ,
5352]
5453
5554[tool .hatch .envs .test ]
5655dependencies = [
57- " pytest"
56+ " pytest" ,
5857]
5958[tool .hatch .envs .test .scripts ]
6059default = " pytest {args}"
6160
6261[[tool .hatch .envs .test .matrix ]]
63- python = [" 3.8" , " 3.9" , " 3.10" , " 3.11" , " 3.12" , " 3.13" ]
62+ python = [ " 3.8" , " 3.9" , " 3.10" , " 3.11" , " 3.12" , " 3.13" ]
6463
65- [tool .setuptools_scm ]
64+ [tool .pytest .ini_options ]
65+ testpaths = " testing"
6666
6767[tool .mypy ]
6868strict = true
69-
70-
71- [tool .pytest .ini_options ]
72- testpaths = " testing"
0 commit comments