Metadata-Version: 2.4
Name: caketool
Version: 1.7.0
Summary: Common tools for MLOps
Author-email: Khoi Do <khoi.do@cake.vn>
License-Expression: MIT
Project-URL: Homepage, https://github.com/cake-digital-bank
Keywords: cake,ds,mlops
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: pip-tools; extra == "dev"
Requires-Dist: bumpver; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

# Caketool

- Enviroment

```bash
conda create -n caketool
conda activate caketool
pip-compile pyproject.toml
pip-sync
pip install pip-tools bumpver build twine ipykernel
```

- Publish libs

```bash
bumpver update --major # Increment the MAJOR version when you make incompatible API changes.
bumpver update --minor # Increment the MINOR version when you add functionality in a backwards compatible manner.
bumpver update --patch # Increment the PATCH version when you make backwards compatible bug fixes.
python -m pip install -e . # Install on local machine
rm ./dist/*
python -m build
twine upload -r testpypi dist/*
twine upload dist/*
pip install caketool
```
