Fix missing README and imports

This commit is contained in:
Marty Oehme 2024-05-29 09:05:45 +02:00
parent f8ee96970a
commit b222a3b874
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
3 changed files with 5 additions and 4 deletions

View file

@ -4,7 +4,9 @@ version = "0.1.0"
description = "My personal curriculum vitae" description = "My personal curriculum vitae"
authors = ["Marty Oehme <marty.oehme@gmail.com>"] authors = ["Marty Oehme <marty.oehme@gmail.com>"]
license = "GPLv3" license = "GPLv3"
readme = "README.md" packages = [
{ include = "processing"}
]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.11"

View file

@ -13,8 +13,7 @@ right-column:
--- ---
```{python} ```{python}
from IPython.core.display import Markdown from IPython.display import display, Markdown
from IPython.display import display
from processing import yml from processing import yml
from processing import content from processing import content

View file

@ -21,11 +21,11 @@ from processing import content
data=yml.parse("content.yml") data=yml.parse("content.yml")
lang="en" lang="en"
``` ```
```{python} ```{python}
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang))) display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
``` ```
```{python} ```{python}
display(Markdown( display(Markdown(
content.experience_to_md(data, headline="# Professional experience", lang=lang))) content.experience_to_md(data, headline="# Professional experience", lang=lang)))