Metadata-Version: 2.1
Name: odp-sdk-python-ingest
Version: 0.4.21
Summary: ODP ingest SDK
Author: Thomas Li Fredriksen
Author-email: thomas.fredriksen@oceandata.earth
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: azure-common (>=1.1.28,<2.0.0)
Requires-Dist: azure-identity (>=1.11.0,<2.0.0)
Requires-Dist: azure-keyvault (>=4.2.0,<5.0.0)
Requires-Dist: azure-keyvault-secrets (>=4.6.0,<5.0.0)
Requires-Dist: azure-storage-blob (>=12.13.1,<13.0.0)
Requires-Dist: azure-storage-common (>=2.1.0,<3.0.0)
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: cognite-cdffs (>=0.2.1,<0.3.0)
Requires-Dist: cognite-sdk (>=5.10.1,<6.0.0)
Requires-Dist: dask (>=2022.11.0,<2022.12.0)
Requires-Dist: dask-kubernetes (>=2022.10.1,<2022.11.0)
Requires-Dist: decorator (>=5.1.1,<6.0.0)
Requires-Dist: docker (>=6.1.2,<7.0.0)
Requires-Dist: fsspec (>=2023.4.0,<2024.0.0)
Requires-Dist: inflection (>=0.5.1,<0.6.0)
Requires-Dist: jinja2 (==3.0.3)
Requires-Dist: msal (>=1.19.0,<2.0.0)
Requires-Dist: msal-extensions (>=1.0.0,<2.0.0)
Requires-Dist: prefect (>=2.10.6,<3.0.0)
Requires-Dist: prefect-azure[blob] (>=0.2.2,<0.3.0)
Requires-Dist: prefect-dask (>=0.2.0,<0.3.0)
Requires-Dist: prefect-kv (>=0.1.0,<0.2.0)
Requires-Dist: prometheus-client (>=0.16.0,<0.17.0)
Requires-Dist: psycopg2-binary (>=2.9.3,<3.0.0)
Requires-Dist: pydantic (>=1.10.2,<2.0.0)
Requires-Dist: pykube-ng (>=22.9.0,<23.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Requires-Dist: slugify (>=0.0.1,<0.0.2)
Description-Content-Type: text/markdown

# ODP Ingest SDK

<p align="center">
    <a href="https://ocean-data-community.slack.com" alt="Slack">
        <img src="https://img.shields.io/badge/slack-join_community-red.svg?color=0052FF&labelColor=090422&logo=slack" />
    </a>
</p>

## Welcome!

INTRO


## Setting up developer environment

This project uses the [Poetry](https://python-poetry.org/) package manager.
Please follow the [official](https://python-poetry.org/docs/#installation) documentation for installation details

In addition to Poetry, this project also uses the package [Poe the Poet](https://github.com/nat-n/poethepoet)
for running simple tasks with poetry.

With Poetry installed, you set up the virtual environment and install the dependencies with a single command:

```shell
poetry install
```

Configure the pre-commit hooks

```shell
pre-commit install
```

