Metadata-Version: 2.1
Name: stuff_saver
Version: 0.1.5
Summary: Just save stuffs
Keywords: python
Author-Email: Joris GUERRY <j@9h.gg>
License: MIT
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
Classifier: Programming Language :: Python :: 3.12
Project-URL: Homepage, https://jorisgu.github.io/stuff-saver/
Project-URL: Repository, https://github.com/jorisgu/stuff-saver
Project-URL: Documentation, https://jorisgu.github.io/stuff-saver/
Requires-Python: <4.0,>=3.9
Description-Content-Type: text/markdown

# stuff-saver

[![Release](https://img.shields.io/github/v/release/jorisgu/stuff-saver)](https://img.shields.io/github/v/release/jorisgu/stuff-saver)
[![Build status](https://img.shields.io/github/actions/workflow/status/jorisgu/stuff-saver/main.yml?branch=main)](https://github.com/jorisgu/stuff-saver/actions/workflows/main.yml?query=branch%3Amain)
[![codecov](https://codecov.io/gh/jorisgu/stuff-saver/branch/main/graph/badge.svg)](https://codecov.io/gh/jorisgu/stuff-saver)
[![Commit activity](https://img.shields.io/github/commit-activity/m/jorisgu/stuff-saver)](https://img.shields.io/github/commit-activity/m/jorisgu/stuff-saver)
[![License](https://img.shields.io/github/license/jorisgu/stuff-saver)](https://img.shields.io/github/license/jorisgu/stuff-saver)

Just save stuffs

- **Github repository**: <https://github.com/jorisgu/stuff-saver/>
- **Documentation** <https://jorisgu.github.io/stuff-saver/>

## Getting started with your project

First, create a repository on GitHub with the same name as this project, and then run the following commands:

``` bash
git init -b main
git add .
git commit -m "init commit"
git remote add origin git@github.com:jorisgu/stuff-saver.git
git push -u origin main
```

Finally, install the environment and the pre-commit hooks with

```bash
make install
```

You are now ready to start development on your project! The CI/CD
pipeline will be triggered when you open a pull request, merge to main,
or when you create a new release.

To finalize the set-up for publishing to PyPi or Artifactory, see
[here](https://fpgmaas.github.io/cookiecutter-pdm/features/publishing/#set-up-for-pypi).
For activating the automatic documentation with MkDocs, see
[here](https://fpgmaas.github.io/cookiecutter-pdm/features/mkdocs/#enabling-the-documentation-on-github).
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-pdm/features/codecov/).

## Releasing a new version

- Create an API Token on [Pypi](https://pypi.org/).
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting
[this page](https://github.com/jorisgu/stuff-saver/settings/secrets/actions/new).
- Create a [new release](https://github.com/jorisgu/stuff-saver/releases/new) on Github.
Create a new tag in the form ``*.*.*``.

For more details, see [here](https://fpgmaas.github.io/cookiecutter-pdm/features/cicd/#how-to-trigger-a-release).

---

Repository initiated with [fpgmaas/cookiecutter-pdm](https://github.com/fpgmaas/cookiecutter-pdm).
