-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
cf6b280
commit 497e2d7
Showing
1 changed file
with
30 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = '[email protected]', | ||
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="[email protected]", | ||
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"}, | ||
) |