Skip to content

Commit ef318ea

Browse files
authored
Merge pull request #25 from woonstadrotterdam/chore/read-the-docs
readthedocs
2 parents b373990 + 32311e2 commit ef318ea

5 files changed

+60
-1
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
- id: mypy
4343
description: "Mypy is an optional static type checker for Python."
4444
args: ["--strict", "--allow-untyped-decorators"]
45-
exclude: "tests"
45+
exclude: ^(tests|docs)
4646
additional_dependencies:
4747
- "pandas-stubs>=2.0.0"
4848
- "aiohttp>=3.10.10"

.readthedocs.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-24.04
5+
tools:
6+
python: "3.10"
7+
8+
mkdocs:
9+
configuration: mkdocs.yml
10+
11+
python:
12+
install:
13+
- requirements: docs/requirements.txt

docs/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{% include-markdown "../README.md" %}

docs/requirements.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdocs==1.6.1
2+
mkdocs-material==9.6.5
3+
mkdocstrings==0.28.1
4+
mkdocstrings-python==1.16.1
5+
mkdocs-include-markdown-plugin==7.1.3
6+
markdown-callouts==0.4.0

mkdocs.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
site_name: Monumenten
2+
site_author: Tomer Gabay, Ben Verhees, Tiddo Loos
3+
copyright: "2025, Woonstad Rotterdam"
4+
5+
theme:
6+
name: material
7+
features:
8+
- navigation.tabs
9+
- navigation.sections
10+
- toc.integrate
11+
- search.suggest
12+
- search.highlight
13+
- content.code.copy
14+
15+
markdown_extensions:
16+
- pymdownx.arithmatex:
17+
generic: true
18+
- pymdownx.highlight:
19+
anchor_linenums: true
20+
- pymdownx.superfences
21+
- pymdownx.details
22+
- pymdownx.tasklist:
23+
custom_checkbox: true
24+
- attr_list
25+
- md_in_html
26+
- admonition
27+
- github-callouts
28+
29+
plugins:
30+
- search
31+
- mkdocstrings:
32+
handlers:
33+
python:
34+
options:
35+
show_source: true
36+
- include-markdown
37+
38+
nav:
39+
- Home: index.md

0 commit comments

Comments
 (0)