Metadata-Version: 2.1
Name: inoopa_utils
Version: 1.11.1
Summary: Collection of utils used at Inoopa.
Home-page: https://bitbucket.org/inoopa/inoopa_utils/
Author: Dev Inoopa
Author-email: dev@inoopa.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: PyMySQL (>=1.0.0,<2.0.0)
Requires-Dist: SQLAlchemy (>=2.0.0,<3.0.0)
Requires-Dist: iniconfig (>=2.0.0,<3.0.0)
Requires-Dist: numpy (>=1.20.0,<2.0.0)
Requires-Dist: packaging (>=23.0,<24.0)
Requires-Dist: pamqp (>=2.0.0,<3.0.0)
Requires-Dist: pandas (>=2.0.0,<3.0.0)
Requires-Dist: pluggy (>=1.0.0,<2.0.0)
Requires-Dist: pymongo (>=4.6.1,<5.0.0)
Requires-Dist: pytest (>=7.0.0,<8.0.0)
Requires-Dist: python-dateutil (>=2.0.0,<3.0.0)
Requires-Dist: pytz (>=2023,<2024)
Requires-Dist: rabbitpy (>=2.0.1,<3.0.0)
Requires-Dist: six (>=1.0.0,<2.0.0)
Requires-Dist: typesense (>=0.18.0,<0.19.0)
Requires-Dist: typing_extensions (>=4.0.0,<5.0.0)
Requires-Dist: tzdata (>=2023,<2024)
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 use this package in your code
```bash
pip install inoopa_utils
```

## 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
```

