Metadata-Version: 2.1
Name: studentresume
Version: 0.8.0
Summary: Student Resume Generator Python Package
Home-page: https://studentresume.org
License: MIT
Author: Diana Le
Author-email: dble@ualberta.ca
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: jsonschema (>=4.17.3,<5.0.0)
Requires-Dist: reportlab (>=3.6.12,<4.0.0)
Requires-Dist: rich (>=12.6.0,<13.0.0)
Requires-Dist: typer (>=0.7.0,<0.8.0)
Project-URL: Repository, https://github.com/open-uofa/studentresume
Description-Content-Type: text/markdown

# studentresume

---

## Installation

Please first create a venv:

For windows users:

```console
python -m venv [VENV_NAME]
```

to activate:

```console
.\venv\scripts\activate
```

---

for linux/mac users

```console
virtualenv venv --python=python3
```

to activate:

```console
source venv/bin/activate
```

---

## Usage

## To generate a resume

```console
studentresume [OPTIONS] [RESUME_JSON] [THEME_JSON]
```

For a detailed help message and optional flags, please use:

```console
studentresume --help
```

---

## Additional info for contributors

Clone the repo:

```console
git clone git@github.com:open-uofa/studentresume.git
```

Navigate to the repo:

```console
cd studentresume
```

Install the package using [Poetry](https://python-poetry.org/) (preferred):

```console
poetry install
```


studentresume stands on the backs of giants [ReportLab](https://docs.reportlab.com/reportlab/userguide), [Typer](https://typer.tiangolo.com/), [rich](https://docs.reportlab.com/reportlab/userguide), and [NerdFonts](https://www.nerdfonts.com/#home)

## License

---

This project is licenced under the terms of the MIT license

