Skip to content

Commit c9b34b9

Browse files
authored
Merge pull request #97 from AA-Turner/packaging
2 parents f769cf3 + eb78348 commit c9b34b9

File tree

4 files changed

+45
-46
lines changed

4 files changed

+45
-46
lines changed

MANIFEST.in

-2
This file was deleted.

pyproject.toml

+45-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,48 @@
11
[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",
533
]
6-
build-backend = "setuptools.build_meta"
734

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+
]

setup.cfg

-2
This file was deleted.

setup.py

-38
This file was deleted.

0 commit comments

Comments
 (0)