From 497e2d78c6d1ac5ce95f4477a21734a3bbb484c9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 30 Dec 2021 20:23:25 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.py | 64 ++++++++++++++++++++++++++------------------------------ 1 file changed, 30 insertions(+), 34 deletions(-) diff --git a/setup.py b/setup.py index 4d445bf..b2435e7 100644 --- a/setup.py +++ b/setup.py @@ -2,41 +2,37 @@ from pathlib import Path setup( - name = 'sphinx-pythia-theme', - url = 'https://sphinx-pythia-theme.readthedocs.io', - project_urls = { - 'Documentation': 'https://projectpythia.org', - 'Source Code': 'https://github.com/ProjectPythia/sphinx-pythia-theme', - 'Bug Tracker': 'https://github.com/ProjectPythia/sphinx-pythia-theme/issues', + name="sphinx-pythia-theme", + url="https://sphinx-pythia-theme.readthedocs.io", + project_urls={ + "Documentation": "https://projectpythia.org", + "Source Code": "https://github.com/ProjectPythia/sphinx-pythia-theme", + "Bug Tracker": "https://github.com/ProjectPythia/sphinx-pythia-theme/issues", }, - author = 'Kevin Paul', - author_email = 'kpaul@ucar.edu', - classifiers = [ - 'Development Status :: 3 - Alpha', - 'Environment :: Web Environment', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 3', - 'Topic :: Internet', - 'Topic :: Software Development :: Documentation', + author="Kevin Paul", + author_email="kpaul@ucar.edu", + classifiers=[ + "Development Status :: 3 - Alpha", + "Environment :: Web Environment", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Topic :: Internet", + "Topic :: Software Development :: Documentation", ], - license = 'Apache 2.0', - description = 'The Sphinx Pythia Theme', - long_description = Path('./README.md').read_text(), - long_description_content_type = "text/markdown", - keywords = 'sphinx, theme, jupyter, notebook', - zip_safe = True, - include_package_data = True, - install_requires = [ - 'sphinx-book-theme>=0.1.7', + license="Apache 2.0", + description="The Sphinx Pythia Theme", + long_description=Path("./README.md").read_text(), + long_description_content_type="text/markdown", + keywords="sphinx, theme, jupyter, notebook", + zip_safe=True, + include_package_data=True, + install_requires=[ + "sphinx-book-theme>=0.1.7", ], - packages = find_packages(), - entry_points = { - 'sphinx.html_themes': [ - 'sphinx_pythia_theme = sphinx_pythia_theme' - ] - }, - use_scm_version={'version_scheme': 'post-release', 'local_scheme': 'dirty-tag'} + packages=find_packages(), + entry_points={"sphinx.html_themes": ["sphinx_pythia_theme = sphinx_pythia_theme"]}, + use_scm_version={"version_scheme": "post-release", "local_scheme": "dirty-tag"}, )