|
1 | 1 | [build-system]
|
2 |
| -requires = [ |
3 |
| -"setuptools>=42", |
4 |
| -"wheel" |
| 2 | +requires = ["flit_core>=3.7"] |
| 3 | +build-backend ="flit_core.buildapi" |
| 4 | + |
| 5 | +# project metadata |
| 6 | +[project] |
| 7 | +name ="python-docs-theme" |
| 8 | +version ="2022.1" |
| 9 | +description ="The Sphinx theme for the CPython docs and related projects" |
| 10 | +readme ="README.rst" |
| 11 | +urls.Code ="https://github.com/python/python-docs-theme" |
| 12 | +urls.Download ="https://pypi.org/project/python-docs-theme/" |
| 13 | +urls.Homepage ="https://github.com/python/python-docs-theme/" |
| 14 | +urls."Issue tracker" ="https://github.com/python/python-docs-theme/issues" |
| 15 | +license.text ="PSF-2.0" |
| 16 | +requires-python =">=3.8" |
| 17 | + |
| 18 | +# Classifiers list: https://pypi.org/classifiers/ |
| 19 | +classifiers = [ |
| 20 | +"Development Status :: 5 - Production/Stable", |
| 21 | +"Framework :: Sphinx :: Theme", |
| 22 | +"Intended Audience :: Developers", |
| 23 | +"License :: OSI Approved :: Python Software Foundation License", |
| 24 | +"Operating System :: OS Independent", |
| 25 | +"Topic :: Documentation", |
| 26 | +"Topic :: Software Development :: Documentation", |
| 27 | +"Programming Language :: Python", |
| 28 | +"Programming Language :: Python :: 3", |
| 29 | +"Programming Language :: Python :: 3.8", |
| 30 | +"Programming Language :: Python :: 3.9", |
| 31 | +"Programming Language :: Python :: 3.10", |
| 32 | +"Programming Language :: Python :: 3.11", |
5 | 33 | ]
|
6 |
| -build-backend ="setuptools.build_meta" |
7 | 34 |
|
| 35 | +[[project.authors]] |
| 36 | +name ="PyPA" |
| 37 | +email ="distutils-sig@python.org" |
| 38 | + |
| 39 | +[project.entry-points."sphinx.html_themes"] |
| 40 | +python_docs_theme ='python_docs_theme' |
| 41 | + |
| 42 | +[tool.flit.module] |
| 43 | +name ="python_docs_theme" |
| 44 | + |
| 45 | +[tool.flit.sdist] |
| 46 | +include = [ |
| 47 | +"python_docs_theme/", |
| 48 | +] |