Metadata-Version: 2.1
Name: data-visualizer-JavierRodriguezPosada
Version: 0.0.3
Summary: App for data visualization
Home-page: https://javiropos.visualstudio.com/DataVisualizer
Author: Javier Rodriguez Posada
Author-email: javiropos@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy (==1.19.3)
Requires-Dist: xlrd (==1.2.0)
Requires-Dist: pandas (==1.1.4)
Requires-Dist: dash (==1.17.0)

# Introduction 
Data visualization tool based in Dash framework. Allows to easly visualize 3D data sets from a data matrix in the source file. Currently supported graphics are:
- 3D Scatter 

# Getting Started
1. Installation process
```
pip install --upgrade data-visualizer-JavierRodriguezPosada
```

1. Run the app
```
python -m data_visualizer
```
Access the url [http://127.0.0.1:8050/](http://127.0.0.1:8050/)

3. Software dependencies
- Python 3
- numpy==1.19.3
- xlrd==1.2.0
- pandas==1.1.4
- dash==1.17.0

1. Latest releases

# Build and Test
Its recommended to install all dev depdendencies in a virtual environment.
```
python -m venv .\.env
.\.env\Scripts\activate
pip install -r .\requirements.dev.txt
```

To run the app:
```
python .\data_visualizer\__main__.py
```

# Generate package

## Dependencies
```
python -m pip install --user --upgrade setuptools wheel twine
```

## Compile
``` 
python setup.py sdist bdist_wheel
```

## Upload
```
python -m twine upload --repository pypi dist\*
```

# Contribute
TODO


