Metadata-Version: 2.1
Name: cohere
Version: 0.0.4
Summary: A Python library for the Cohere API
Home-page: https://github.com/cohere-ai/cohere-python
Author: kipply
Author-email: carol@cohere.ai
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown






## Release Instructions

Build the distribution
```
python3 setup.py sdist bdist_wheel
```

Ship to PyPi
```
python3 -m twine upload --repository pypi  dist/*
```

To test a shipment to TestPyPI, use the following: 
```
python3 -m twine upload --repository testpypi dist/*
```


