feat: initial commit
This commit is contained in:
commit
6bfef61ecc
31 changed files with 1864 additions and 0 deletions
25
pyproject.toml
Normal file
25
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue