Metadata-Version: 2.0
Name: odoo-manager
Version: 0.0.1
Summary: Odoo manager utility
Home-page: UNKNOWN
Author: Blue Stingray
Author-email: odoo@bluestingray.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.3
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: docopt
Requires-Dist: invoke (==1.1.*)
Requires-Dist: configparser (==3.7.3)
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'

# odoo-manager

## Setup

### Dependencies

```
python3 -m pip install --user --upgrade setuptools wheel
python3 -m pip install --user --upgrade twine
python3 -m pip install --user --upgrade pytest
python3 -m pip install --user --upgrade docopt
```

### Install Test Version Locally

`python3 -m pip install -e .[test]`

## Distribution

### Generating Distribution

`python3 setup.py sdist bdist_wheel`

### Uploading Distribution

`python3 -m twine upload dist/*`



