11[build-system ]
2- requires = [" setuptools>=41.2.0" , " wheel" , " setuptools_scm>3" ]
2+ build-backend = " hatchling.build"
3+ requires = [
4+ " hatch-vcs" ,
5+ " hatchling" ,
6+ ]
37
4- build-backend = " setuptools.build_meta"
8+ [project ]
9+ name = " iniconfig"
10+ description = " brain-dead simple config-ini parsing"
11+ readme = " README.rst"
12+ license = " MIT"
13+ authors = [
14+ { name = " Ronny Pfannschmidt" , email = " opensource@ronnypfannschmidt.de" },
15+ { name = " Holger Krekel" , email = " holger.krekel@gmail.com" },
16+ ]
17+ requires-python = " >=3.7"
18+ dynamic = [
19+ " version" ,
20+ ]
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.7" ,
31+ " Programming Language :: Python :: 3.8" ,
32+ " Programming Language :: Python :: 3.9" ,
33+ " Programming Language :: Python :: 3.10" ,
34+ " Programming Language :: Python :: 3.11" ,
35+ " Topic :: Software Development :: Libraries" ,
36+ " Topic :: Utilities" ,
37+ ]
38+ [project .urls ]
39+ Homepage = " https://github.com/pytest-dev/iniconfig"
540
6- [tool .setuptools_scm ]
41+
42+ [tool .hatch .version ]
43+ source = " vcs"
44+
45+ [tool .hatch .build .hooks .vcs ]
46+ version-file = " src/iniconfig/_version.py"
47+
48+ [tool .hatch .build .targets .sdist ]
49+ include = [
50+ " /src" ,
51+ ]
52+
53+ [tool .hatch .envs .test ]
54+ dependencies = [
55+ " pytest"
56+ ]
57+ [tool .hatch .envs .test .scripts ]
58+ default = " pytest"
59+
60+ [[tool .hatch .envs .test .matrix ]]
61+ python = [" 3.7" , " 3.8" , " 3.9" , " 3.10" , " 3.11" ]
62+
63+ [tool .setuptools_scm ]
64+
65+ [tool .mypy ]
66+ strict = true
67+
68+
69+ [tool .pytest .ini_options ]
70+ testpaths = " testing"
0 commit comments