Metadata-Version: 2.1
Name: tacoreader
Version: 0.6.4
Summary: A reader for Cloud-Optimized Datasets
Home-page: https://github.com/tacofoundation/tacoreader
Author: Cesar Aybar
Author-email: cesar.aybar@uv.es
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: fsspec (>=2024.10.0)
Requires-Dist: obstore (>=0.8.1)
Requires-Dist: pandas (>=2.2.2)
Requires-Dist: polars (>=1.25.2)
Requires-Dist: pyarrow (>=17.0.0)
Requires-Dist: requests (>=2.32.3)
Requires-Dist: tqdm (>=4.67.1)
Project-URL: Documentation, https://tacofoundation.github.io/tacoreader/
Project-URL: Repository, https://github.com/tacofoundation/tacoreader
Description-Content-Type: text/markdown

# tacoreader

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

Read TACO datasets

- **Github repository**: <https://github.com/csaybar/tacoreader/>
- **Documentation** <https://csaybar.github.io/tacoreader/>

## 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:csaybar/tacoreader.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/csaybar/tacoreader/settings/secrets/actions/new).
- Create a [new release](https://github.com/csaybar/tacoreader/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).

