Metadata-Version: 2.1
Name: dash-mui-ploomber
Version: 0.0.1
Summary: Material UI for Dash
Author: Ploomber Inc <contact@ploomber.io>
License: Apache-2.0
Classifier: Framework :: Dash
Description-Content-Type: text/markdown
License-File: LICENSE

# Dash MUI

Live demo: [dash-mui.ploomberapp.io](https://dash-mui.ploomberapp.io/)

## Installation

```sh
pip install <TBD>
```

## Run demo locally

```sh
cd demo
pip install -r requirements.txt
python app.py
```

Open: http://localhost:8050


## Documentation


## Setup

```sh
npm install
pip install -r requirements.txt
pip install -r tests/requirements.txt
```

## Development

```sh
npm run build
python demo.py
```


## Release

```sh
# generate
npm run build
python setup.py sdist bdist_wheel
ls dist

# test artifact
pip install dash dist/dash_mui-0.0.1.tar.gz
python demo.py

# upload
pip install twine
twine upload dist/*

# clean up
rm -rf dist
```
