Metadata-Version: 2.3
Name: xls_is_for_corporate
Version: 1.0.1a0
Summary: XLS is for corporate, convert it to something else
License: MIT
Author: Felipe Quécole
Author-email: felipequecole@gmail.com
Requires-Python: >=3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: click (>=8.1.8,<9.0.0)
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
Requires-Dist: questionary (>=2.1.0,<3.0.0)
Requires-Dist: rich (>=13.9.4,<14.0.0)
Requires-Dist: xlrd (>=2.0.1,<3.0.0)
Description-Content-Type: text/markdown

# XLS/XLSX is for corporate

A (very) simple tool to read a xls/xlsx file and either output
it as a table in the terminal or save it as json or csv into a file

## Usage

```text
Usage: xlsifc.py [OPTIONS]

Options:
  -f, --file FILE          [required]
  -t, --format [json|csv]  Format to convert into
  -o, --output PATH        Output file
  -s, --sheet TEXT         Speficic sheet inside workbook (if not provided,
                           you will be asked
  --help                   Show help message and exit.
```

## Installation

### Using pip

```commandline
pip3 install -r requirements.txt
```

### Using poetry

```commandline
poetry install
```

