diff --git a/pyproject.toml b/pyproject.toml index ce5227c..2326f7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,9 @@ version = "0.1.0" description = "My personal curriculum vitae" authors = ["Marty Oehme "] license = "GPLv3" -readme = "README.md" +packages = [ + { include = "processing"} +] [tool.poetry.dependencies] python = "^3.11" diff --git a/resume_de.qmd b/resume_de.qmd index c9966d8..c702953 100644 --- a/resume_de.qmd +++ b/resume_de.qmd @@ -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 diff --git a/resume_en.qmd b/resume_en.qmd index d1bf3bb..9893c87 100644 --- a/resume_en.qmd +++ b/resume_en.qmd @@ -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)))