Metadata-Version: 2.1
Name: inoopa_utils
Version: 1.0.2
Summary: Collection of utils used at Inoopa.
Home-page: https://bitbucket.org/inoopa/inoopa_utils/
Author: Dev Inoop
Author-email: dev@inoopa.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://bitbucket.org/inoopa/inoopa_utils/
Description-Content-Type: text/markdown

# Inoopa's helpers

This repo contains helper functions we use in all of our python projects.

# This is pushed publicly to Pypi, so NEVER commit any secret here!

## How to publish package to Pypi

After any code change, **update the package version** in [pyproject.toml](./pyproject.toml).

Then, at the root of the repo:

```bash
# Login to Pypi
poetry config pypi-token.pypi <Pypi API token here>

# Build project
poetry build

# Publish
poetry publish
```
