Metadata-Version: 2.1
Name: workstation-cli
Version: 0.1.1
Summary: Python lib for my personal workstation setup
Home-page: https://github.com/militu/workstation-cli
License: MIT
Author: Victor Mazzeo
Author-email: victor.mazzeo@groupeseloger.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.0.3,<9.0.0)
Requires-Dist: distro (>=1.6.0,<2.0.0)
Requires-Dist: loguru (==0.5.3)
Requires-Dist: wget (>=3.2,<4.0)
Project-URL: Changelog, https://github.com/militu/workstation-cli/releases
Project-URL: Documentation, https://militu.github.io/workstation-cli
Project-URL: Repository, https://github.com/militu/workstation-cli
Description-Content-Type: text/markdown

# Workstation

![Tests](https://github.com/militu/workstation/actions/workflows/tests.yml/badge.svg)
![Docs](https://github.com/militu/workstation/actions/workflows/documentation.yml/badge.svg)

### 🕮 Documentation

For detailed documentation (todo), please see [here](https://militu.github.io/workstation/)

```shell
pip install workstation --user
```

### 🪛 Develop

First install workstation

```shell
pyenv install -s 3.8.12
pyenv local 3.8.12
poetry lock
nox -s pre-commit -- install
nox -s pre-commit -- install --hook-type commit-msg
```

Release

```shell
git switch --create release main
nox -s release -- --patch
git push origin release
```

