Skip to content

Commit

Permalink
Remove the starterkit-ci dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Dec 15, 2023
1 parent 26045b1 commit 379d2cb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
47 changes: 24 additions & 23 deletions conf.py
Original file line number Diff line number Diff line change
@@ -1,44 +1,45 @@
# You should normally never do wildcard imports
# Here it is useful to allow the configuration to be maintained elsewhere
from starterkit_ci.sphinx_config import * # NOQA

project = 'Key4hep'
copyright = '2020, Key4hep'
author = 'Key4hep'
html_logo = 'starterkit.png'

exclude_patterns += [
'archive',
'README.md',
# from starterkit_ci.sphinx_config import * # NOQA

project = "Key4hep"
copyright = "2020, Key4hep"
author = "Key4hep"
# html_logo = "starterkit.png"

exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store" "archive",
"README.md",
]

html_theme = "sphinx_rtd_theme"

html_context = {
'display_github': True,
'github_user': 'key4hep',
'github_repo': 'key4hep-doc',
'github_version': 'main',
'conf_py_path': '/',
"display_github": True,
"github_user": "key4hep",
"github_repo": "key4hep-doc",
"github_version": "main",
"conf_py_path": "/",
}

extensions = [
'sphinx_copybutton',
'sphinx_markdown_tables',
"sphinx_copybutton",
"sphinx_markdown_tables",
"sphinx_design",
'myst_parser',
"myst_parser",
]

source_suffix = {
'.md': 'markdown',
".md": "markdown",
}

#html_static_path += [
# html_static_path += [
# f'_static',
#]
# ]

linkcheck_ignore += [
]
linkcheck_ignore = []

myst_heading_anchors = 3

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
sphinx==7.2.6
myst-parser==2.0.0
starterkit-ci==0.0.12
sphinx-copybutton==0.5.2
sphinx-markdown-tables==0.0.17
notedown==1.5.1
Expand Down

0 comments on commit 379d2cb

Please sign in to comment.