Metadata-Version: 2.1
Name: data-visualizer-JavierRodriguezPosada
Version: 0.0.1
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.9
Description-Content-Type: text/markdown

# 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
Its recommended to install all depdendencies in a virtual environment.
```
python -m venv .\.env
.\.env\Scripts\activate
pip install -r .\requirements.dev.txt
```

2. Run the app
```
python .\src\app.py
```
Access the url [http://127.0.0.1:8050/](http://127.0.0.1:8050/)

3. Software dependencies
- Python 3
4. Latest releases

# Build and Test
TODO: Describe and show how to build your code and run the tests. 

# Generate package
```
python3 -m pip install --user --upgrade setuptools wheel twine
python3 setup.py sdist bdist_wheel
```



# Contribute
TODO 


