Setup Mkdocs (#7)

* Compile docs with Mkdocs

* Add info about project
This commit is contained in:
Marcello 2022-05-26 19:11:28 +02:00
parent 4c5c361db7
commit 75b392d778
134 changed files with 549 additions and 1495 deletions

16
pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[tool.poetry]
name = "programming-notes"
version = "0.1.0"
description = ""
authors = ["Marcello Lamonaca <marcello@lamonaca.eu>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
mkdocs = "^1.3.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"