Coverage for rendercv/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-26 00:25 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-26 00:25 +0000
1"""
2RenderCV is a Typst-based Python package with a command-line interface (CLI) that allows
3you to version-control your CV/resume as source code.
4"""
6__version__ = "2.1"
8from .api import create_contents_of_a_typst_file
10__all__ = ["create_contents_of_a_typst_file"]
12_parial_install_error_message = (
13 'Please install RenderCV with `pip install "rendercv[full]"` to be able to use'
14 " all the features of RenderCV."
15)