Metadata-Version: 2.1
Name: satility
Version: 0.0.2
Summary: Utility to download and process SPOT-VGT and PROBA-V scenes via Terracatalogue
Home-page: https://github.com/IPL-UV/satility
Author: Julio Contreras
Author-email: contrerasnetk@gmail.com
Requires-Python: >=3.8,<4.0
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
Provides-Extra: torch
Requires-Dist: georeader (>=0.1.13)
Requires-Dist: numpy (>=2.0.2)
Requires-Dist: rasterio (>=1.4.3)
Requires-Dist: segmentation-models-pytorch (>=0.5.0) ; extra == "torch"
Requires-Dist: terracatalogueclient (>=0.1.19)
Requires-Dist: torch (>=2.2) ; extra == "torch"
Requires-Dist: tqdm (>=4.66.1)
Project-URL: Documentation, https://github.com/IPL-UV/satility
Project-URL: Repository, https://github.com/IPL-UV/satility
Description-Content-Type: text/markdown

# satility

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

This is a template repository for Python projects that use Poetry for their dependency management.

- **Github repository**: <https://github.com/JulioContrerasH/satility/>
- **Documentation** <https://JulioContrerasH.github.io/satility/>

## 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:JulioContrerasH/satility.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-poetry/features/publishing/#set-up-for-pypi).
For activating the automatic documentation with MkDocs, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/mkdocs/#enabling-the-documentation-on-github).
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-poetry/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/JulioContrerasH/satility/settings/secrets/actions/new).
- Create a [new release](https://github.com/JulioContrerasH/satility/releases/new) on Github.
- Create a new tag in the form `*.*.*`.
- For more details, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/cicd/#how-to-trigger-a-release).

---

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

