Skip to content

Commit

Permalink
Merge pull request #28 from kmpaul/main
Browse files Browse the repository at this point in the history
Attempt to fix versioning
  • Loading branch information
Kevin Paul authored Dec 30, 2021
2 parents 7cc941e + 497e2d7 commit cf5681f
Showing 1 changed file with 30 additions and 34 deletions.
64 changes: 30 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
)

0 comments on commit cf5681f

Please sign in to comment.