Metadata-Version: 2.1
Name: yuca
Version: 0.1.0
Summary: CLI tool for fast personal data processing and visualization
Author-email: Jorge Morgado Vega <jorge.morgadov@gmail.com>, Gustavo Viera-López <gvieralopez@gmail.com>
License: MIT License
        
        Copyright (c) 2022 yupidevs
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/yuca-devs/yuca
Keywords: tremplate handler,cv generator
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: GitPython >=3.1.31
Requires-Dist: typer >=0.9.0
Requires-Dist: ruamel-yaml >=0.17.32
Requires-Dist: jinja2 >=3.1.2
Requires-Dist: platformdirs >=3.10.0
Requires-Dist: typing-extensions >=4.7.1
Provides-Extra: dev
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: pylint ; extra == 'dev'
Requires-Dist: bumpver ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'

# yuca

Keep all your info (contact, education, projects, publications, etc) in a single
place and generate Resumes, CVs, and much more in one line.

## Installation

```bash
pip install yuca
```

## Getting started

You can enter your data from partially filled data files generated using:

```bash
yuca warehouse init my_wh_name
```

That will create your **warehouse**, which is the folder where you are going to
store your **data**, **templates** and **recipes**.

By default, no templates are downloaded with yuca. In order to get your first
template, you can run:

```bash
yuca template get https://github.com/yuca-devs/forty-seconds-resume.git
```

That will add the template *forty-seconds-resume* into the *templates* folder
of your warehouse. Moreover, it will create a *forty-seconds-resume-base-recipe*
that helps yuca while cooking that template. You can find the base recipe in the
**recipes** folder of your warehouse.

Now, you can produce a compiled version of your template by cooking the recipe:

```bash
yuca cook forty-seconds-resume-base-recipe
```

That will produce a folder *forty-seconds-resume-base-recipe-cooked* with the
result of the compilation.

Finally, you can edit the file *en.yml* inside the **data** folder of your
warehouse, insterting your own personal information. Then cook the recipe again
to see the template filled up with your data.
