Metadata-Version: 2.1
Name: sunpal
Version: 0.1.3
Summary: Sunpal small library devs
Home-page: https://sunpal.readthedocs.io/
Author: sunwise
Author-email: abner@sunwise.io
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Sunpal
A small demo library for a Sunpal application.

### Installation
```
pip install sunpal
```

### Get started
Write here how start

```Python
import sunpal

# configure
sunpal.configure(SUNPAL_API_KEY, SUNPAL_COMPANY)

```

### Run Tests
```
python3 -m unittest -v tests/customers.py
```

### Deploy library
```
# Compile
python3 setup.py sdist bdist_wheel
# Check
twine check dist/*
# Upload
python3 -m twine upload dist/*
```

### Extra only local dev
```
# Set localhost custom domain
export LOCAL_SUNPAL_DOMAIN=localhost:8004
```
