Metadata-Version: 2.4
Name: ri-excel
Version: 0.1.0
Summary: Utilities for excel management.
Author-email: Ravetta Stefano <s.ravetta94@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/ShikaruAriki/ri-excel
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: build==1.2.2
Requires-Dist: dataclass-wizard==0.35.0
Requires-Dist: deepdiff==8.5.0
Requires-Dist: openpyxl==3.1.5
Requires-Dist: pytest==8.4.0
Requires-Dist: setuptools==80.9.0
Requires-Dist: tox==4.26.0
Requires-Dist: twine==6.1.0
Requires-Dist: wheel==0.46.1
Dynamic: license-file

# ri-excel

Utilities for excel management.

## Configuring the `.pypirc` file

Before publishing the package to PyPI and TestPyPI, make sure to create the .pypirc file in your home directory
(~/.pypirc) with the following content:

```ini
[distutils]
index-servers =
    pypi
    testpypi

[pypi]
username = __token__
password = <PyPI_token>

[testpypi]
repository = https://test.pypi.org/legacy/
username = __token__
password = <TestPyPI_token>
```

## License

This project is released under Apache License 2.0.
See the [LICENSE](LICENSE) file for details.

## Dependencies

The project uses the following external libraries:

| Libreria         | Licenza    |
|------------------|------------|
| build            | Apache 2.0 |
| dataclass-wizard | Apache 2.0 |
| deepdiff         | MIT        |
| openpyxl         | MIT        |
| pytest           | MIT        |
| setuptools       | MIT        |
| tox              | MIT        |
| twine            | Apache 2.0 |
| wheel            | MIT        |

For more details on dependency licensing, see the [THIRD_PARTY_LICENSES.md](THIRD_PARTY_LICENSES.md) file.
