Metadata-Version: 2.1
Name: corva-sdk
Version: 0.0.4
Summary: SDK for interacting with Corva
Home-page: https://github.com/corva-ai/python-sdk
Author: Jordan Ambra
Author-email: jordan.ambra@corva.ai
License: The Unlicense
Keywords: corva,sdk
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: pydantic (>=1.7.2)
Requires-Dist: redis (>=3.5.3)
Requires-Dist: requests (>=2.25.0)
Requires-Dist: urllib3 (>=1.26.2)

# Requirements
Python 3.8+

# Local development

### Set up the project
```sh
cd ~/YOUR_PATH/python-worker-public
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

### Run tests
```sh
venv/bin/python3 -m pytest tests
```

### Run code linter
```sh
venv/bin/python3 -m flake8
```




