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"
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
license = "GPLv3"
readme = "README.md"
packages = [
{ include = "processing"}
]
[tool.poetry.dependencies]
python = "^3.11"

View file

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

View file

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