Metadata-Version: 2.1
Name: tabletexifier
Version: 0.2.1
Summary: Pretty formatted tables that can be exported to LaTeX
Home-page: 
Author: Kamuish
Author-email: andremiguel952@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Goal of the project 

Provide an easy interface to create Tables that are not only printed nicely in the terminal, but can
also be easily exported to LaTeX code. It is also desired to easily create tables in the format required by multiple scientific journals.

Check the docs in here: https://tabletexifier.readthedocs.io/en/latest/


# How to Install

```
pip install tabletexifier
```

# Development

Create a virtual environment and run
```
pip install -r requirements_dev.txt
```
in order to install development dependencies.


In order to run the tests and see coverage reports, use
```
pytest --cov=. test --cov-report html
```



