feat: initial commit

This commit is contained in:
Konstantin Fickel 2026-03-05 21:03:48 +01:00
commit 6bfef61ecc
Signed by: kfickel
GPG key ID: A793722F9933C1A5
31 changed files with 1864 additions and 0 deletions

25
pyproject.toml Normal file
View file

@ -0,0 +1,25 @@
[project]
name = "cv"
version = "0.1.0"
description = "Generate a pretty CV from a Markdown File"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"basedpyright>=1.38.2",
"jinja2>=3.1.6",
"markdown>=3.7",
"pydantic>=2.12.5",
"python-frontmatter>=1.1.0",
"typer>=0.24.1",
"weasyprint>=68.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["main.py", "src/cv_generator"]
[project.scripts]
cv = "main:app"