Coverage for rendercv/__init__.py: 100%

4 statements  

« 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""" 

5 

6__version__ = "2.1" 

7 

8from .api import create_contents_of_a_typst_file 

9 

10__all__ = ["create_contents_of_a_typst_file"] 

11 

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)