forked from python/python-docs-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import io
from setuptools import setup
# README into long description
with io.open("README.rst", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="python-docs-theme",
# Version is date based as year.month[.serial], where serial is used
# if multiple releases are needed to address build failures.
version="2022.1",
description="The Sphinx theme for the CPython docs and related projects",
long_description=long_description,
author="PyPA",
author_email="distutils-sig@python.org",
url="https://github.com/python/python-docs-theme/",
packages=["python_docs_theme"],
include_package_data=True,
entry_points={
"sphinx.html_themes": [
"python_docs_theme = python_docs_theme",
]
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)