25 lines
524 B
TOML
25 lines
524 B
TOML
[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"
|