Metadata-Version: 2.1
Name: levo-commons
Version: 0.1.41
Summary: Common code between Levo CLI and test plans.
Home-page: https://github.com/levoai/levo-commons
Author: Levo Inc
Author-email: info@levo.ai
Project-URL: Bug Tracker, https://github.com/levo/levo-commons/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: attrs (>=20.3)
Requires-Dist: curlify (>=2.2.1)
Requires-Dist: grpcio (<2.0.0,>=1.37.0)
Requires-Dist: requests (>=2.25.1)
Provides-Extra: test
Requires-Dist: pytest (>=6.0) ; extra == 'test'
Requires-Dist: hypothesis (<7.0.0,>=6.14.3) ; extra == 'test'

# levo-commons
Common code between Levo's CLI and test plans

# Running the checks and tests locally

```bash
# Pre-commit checks
pip install pre-commit
SKIP=pylint,mypy pre-commit run --all-files
pre-commit run mypy --all-files

# Unit tests
pip install tox
tox -e py
```
