|
5 | 5 | from setuptools import setup
|
6 | 6 |
|
7 | 7 | # README into long description
|
8 |
| -with io.open('README.rst', encoding='utf-8') as readme_file: |
| 8 | +with io.open("README.rst", encoding="utf-8") as readme_file: |
9 | 9 | long_description = readme_file.read()
|
10 | 10 |
|
11 | 11 |
|
12 | 12 | setup(
|
13 |
| - name='python-docs-theme', |
| 13 | + name="python-docs-theme", |
14 | 14 | # Version is date based as year.month[.serial], where serial is used
|
15 | 15 | # if multiple releases are needed to address build failures.
|
16 |
| - version='2021.11.dev', |
17 |
| - description='The Sphinx theme for the CPython docs and related projects', |
| 16 | + version="2021.11.1", |
| 17 | + description="The Sphinx theme for the CPython docs and related projects", |
18 | 18 | long_description=long_description,
|
19 |
| - author='PyPA', |
20 |
| - |
21 |
| - url='https://github.com/python/python-docs-theme/', |
22 |
| - packages=['python_docs_theme'], |
| 19 | + author="PyPA", |
| 20 | + |
| 21 | + url="https://github.com/python/python-docs-theme/", |
| 22 | + packages=["python_docs_theme"], |
23 | 23 | include_package_data=True,
|
24 | 24 | entry_points={
|
25 |
| - 'sphinx.html_themes': [ |
26 |
| - 'python_docs_theme = python_docs_theme', |
| 25 | + "sphinx.html_themes": [ |
| 26 | + "python_docs_theme = python_docs_theme", |
27 | 27 | ]
|
28 | 28 | },
|
29 | 29 | classifiers=[
|
30 |
| - 'Intended Audience :: Developers', |
31 |
| - 'License :: OSI Approved :: Python Software Foundation License', |
32 |
| - 'Operating System :: OS Independent', |
33 |
| - 'Topic :: Documentation', |
34 |
| - 'Topic :: Software Development :: Documentation', |
35 |
| - 'Programming Language :: Python', |
36 |
| - 'Programming Language :: Python :: 3', |
| 30 | + "Intended Audience :: Developers", |
| 31 | + "License :: OSI Approved :: Python Software Foundation License", |
| 32 | + "Operating System :: OS Independent", |
| 33 | + "Topic :: Documentation", |
| 34 | + "Topic :: Software Development :: Documentation", |
| 35 | + "Programming Language :: Python", |
| 36 | + "Programming Language :: Python :: 3", |
37 | 37 | ],
|
38 | 38 | )
|
0 commit comments