codeurcv 0.4.0__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codeurcv-0.4.0 → codeurcv-0.4.1}/PKG-INFO +1 -1
- {codeurcv-0.4.0 → codeurcv-0.4.1}/pyproject.toml +1 -1
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/cli.py +1 -1
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/schema.py +0 -5
- {codeurcv-0.4.0 → codeurcv-0.4.1}/LICENSE +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/README.md +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/__init__.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/__main__.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/constants.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/dependency_checker.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/logger.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/markdown_converter.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/plugin_loader.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/renderer.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/settings.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/core/template_loader.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/plugins/__init__.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/plugins/base.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/plugins/minimalist/__init__.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/plugins/minimalist/plugin.py +0 -0
- {codeurcv-0.4.0 → codeurcv-0.4.1}/src/codeurcv/plugins/minimalist/template.tex +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codeurcv"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.1"
|
|
4
4
|
description = "A Python library to generate LaTeX resumes from YAML configuration files using Jinja2 templates."
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "crackedngineer", email = "subhomoyrchoudhury@gmail.com" },
|
|
@@ -58,7 +58,7 @@ def run(
|
|
|
58
58
|
|
|
59
59
|
renderer = ResumeRenderer()
|
|
60
60
|
|
|
61
|
-
renderer.render(config_path=input,
|
|
61
|
+
renderer.render(config_path=input, output_dir=output, out_filename=name, template=template)
|
|
62
62
|
|
|
63
63
|
console.print("[bold green]Done![/bold green]")
|
|
64
64
|
|
|
@@ -49,8 +49,3 @@ class ResumeConfig(BaseModel):
|
|
|
49
49
|
work: List[Job] = Field(default_factory=list)
|
|
50
50
|
projects: List[Project] = Field(default_factory=list)
|
|
51
51
|
skills: List[Skill] = Field(default_factory=list)
|
|
52
|
-
|
|
53
|
-
@field_validator("filename")
|
|
54
|
-
@classmethod
|
|
55
|
-
def strip_pdf_extension(cls, v: str) -> str:
|
|
56
|
-
return v.removesuffix(".pdf")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|