Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Paul authored Dec 30, 2021
2 parents 9e3f039 + 7d50e14 commit 7cc941e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 48 deletions.
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
43 changes: 0 additions & 43 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,46 +1,3 @@
[metadata]
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
license=Apache 2.0
description = The Sphinx Pythia Theme
long_description = file: ./README.md
long_description_content_type = "text/markdown",
keywords=
sphinx
theme
jupyter
notebook


[options]
zip_safe = True
include_package_data = True
install_requires =
sphinx-book-theme>=0.1.7
packages = find:


[options.entry_points]
sphinx.html_themes =
sphinx_pythia_theme = sphinx_pythia_theme


[flake8]
max-line-length = 120
ignore=E203,W503
43 changes: 41 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
from setuptools import setup
from setuptools import setup, find_packages
from pathlib import Path

setup()
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',
},
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',
],
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 7cc941e

Please sign in to comment.