11[build-system ]
22build-backend = " hatchling.build"
3- requires = [" hatchling>=1.11.1" , " hatch-vcs>=0.2" ]
3+ requires = [
4+ " hatch-vcs>=0.3" ,
5+ " hatchling>=1.12.2" ,
6+ ]
47
58[project ]
69name = " pyproject_api"
710description = " API to interact with the python pyproject.toml based projects"
8- readme.file = " README.md"
911readme.content-type = " text/markdown"
10- keywords = [" virtual" , " environments" , " isolated" , " testing" ]
12+ readme.file = " README.md"
13+ keywords = [
14+ " environments" ,
15+ " isolated" ,
16+ " testing" ,
17+ " virtual" ,
18+ ]
1119license = " MIT"
12- urls.Homepage = " http://pyproject_api.readthedocs.org"
13- urls.Source = " https://github.com/tox-dev/pyproject-api"
14- urls.Tracker = " https://github.com/tox-dev/pyproject-api/issues"
15- authors = [{
name =
" Bernát Gábor" ,
email =
" [email protected] " }]
1620maintainers = [{
name =
" Bernát Gábor" ,
email =
" [email protected] " }]
21+ authors = [{
name =
" Bernát Gábor" ,
email =
" [email protected] " }]
1722requires-python = " >=3.7"
18- dependencies = [" packaging>=21.3" , ' tomli>=2.0.1; python_version < "3.11"' ]
19- optional-dependencies.docs = [" furo>=2022.9.29" , " sphinx>=5.3" , " sphinx-autodoc-typehints>=1.19.5" ]
20- optional-dependencies.testing = [
21- " covdefaults>=2.2.2" ,
22- " pytest>=7.2" ,
23- " pytest-cov>=4" ,
24- " pytest-mock>=3.10" ,
25- ' importlib-metadata>=5.1; python_version < "3.8"' ,
26- " wheel>=0.38.4" ,
27- " virtualenv>=20.17" ,
28- ]
29- dynamic = [" version" ]
3023classifiers = [
3124 " Development Status :: 5 - Production/Stable" ,
3225 " Framework :: tox" ,
@@ -35,17 +28,34 @@ classifiers = [
3528 " Operating System :: MacOS :: MacOS X" ,
3629 " Operating System :: Microsoft :: Windows" ,
3730 " Operating System :: POSIX" ,
38- " Programming Language :: Python :: 3" ,
39- " Programming Language :: Python :: 3 :: Only" ,
40- " Programming Language :: Python :: 3.7" ,
41- " Programming Language :: Python :: 3.8" ,
42- " Programming Language :: Python :: 3.9" ,
43- " Programming Language :: Python :: 3.10" ,
44- " Programming Language :: Python :: 3.11" ,
4531 " Topic :: Software Development :: Libraries" ,
4632 " Topic :: Software Development :: Testing" ,
4733 " Topic :: Utilities" ,
4834]
35+ dynamic = [
36+ " version" ,
37+ ]
38+ dependencies = [
39+ " packaging>=23" ,
40+ ' tomli>=2.0.1; python_version < "3.11"' ,
41+ ]
42+ optional-dependencies.docs = [
43+ " furo>=2022.12.7" ,
44+ " sphinx>=6.1.3" ,
45+ " sphinx-autodoc-typehints!=1.23.4,>=1.22" ,
46+ ]
47+ optional-dependencies.testing = [
48+ " covdefaults>=2.2.2" ,
49+ ' importlib-metadata>=6; python_version < "3.8"' ,
50+ " pytest>=7.2.1" ,
51+ " pytest-cov>=4" ,
52+ " pytest-mock>=3.10" ,
53+ " virtualenv>=20.17.1" ,
54+ " wheel>=0.38.4" ,
55+ ]
56+ urls.Homepage = " http://pyproject_api.readthedocs.org"
57+ urls.Source = " https://github.com/tox-dev/pyproject-api"
58+ urls.Tracker = " https://github.com/tox-dev/pyproject-api/issues"
4959
5060[tool .hatch ]
5161build.hooks.vcs.version-file = " src/pyproject_api/_version.py"
0 commit comments