Skip to content

Commit

Permalink
Adds mkdocs template
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Oct 19, 2023
1 parent f05ba7b commit 0c9b5ef
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# CRC-Shinigami

::: shinigami
1 change: 1 addition & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Installation and Setup
1 change: 1 addition & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Usage Examples
16 changes: 16 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
site_name: CRC Shinigami
repo_url: https://github.com/pitt-crc/shinigami
theme:
name: readthedocs
highlightjs: true
include_homepage_in_sidebar: true
prev_next_buttons_location: bottom
plugins:
- search:
- mkdocstrings:
custom_templates: templates
nav:
- index.md
- installation.md
- usage.md
copyright: Copyright © University of Pittsburgh. All rights reserved.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ optional = true

[tool.poetry.group.tests.dependencies]
coverage = "*"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = "*"}

0 comments on commit 0c9b5ef

Please sign in to comment.