-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
38 lines (37 loc) · 1.24 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
site_name: cookiecutter-pypackage
repo_url: https://github.com/xdurana/cookiecutter-pypackage
site_url: https://xdurana.github.io/cookiecutter-pypackage
site_description: A cookiecutter template for Python projects that use Poetry for its dependency management
site_author: Xavier Duran
nav:
- Home: index.md
- Features:
- CI/CD with Github Actions: features/cicd.md
- Formatting with black and isort: features/formatting.md
- Linting with flake8: features/linting.md
- Makefile: features/makefile.md
- Dependency management with Poetry: features/poetry.md
- Publishing to PyPi: features/publishing.md
- Testing with Pytest: features/pytest.md
- Documentation with MkDocs: features/mkdocs.md
- Compatibility testing with Tox: features/tox.md
- Static type checking with mypy: features/mypy.md
- Containerization with Docker: features/docker.md
- Developing inside a Container in VSCode: features/vscode.md
- Tutorial: tutorial.md
- Prompt Arguments: prompt_arguments.md
plugins:
- search
copyright: Maintained by Xavier.
theme:
name: material
feature:
tabs: true
palette:
primary: white
accent: blue
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true