Metadata-Version: 2.4
Name: jl95terceira_batteries
Version: 1.10.0
Summary: Batteries to complement the standard library
Project-URL: Homepage, https://github.com/jl95terceira/batteries-python
Project-URL: Issues, https://github.com/jl95terceira/batteries-python/issues
Author-email: Joao Luis Ornelas da Silva <jl95terceira@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown

Convenient classes and methods to complement the standard library (Python)

# Build and Install

Install all packages that are specified in `requirements-to-build.txt`. They can be `pip`-installed all at once with the following command.

```
python -m pip install -r requirements-to-build.txt
```

To build / pack up, run the following command at the top directory.

```
python -m build
```

A `.whl` is generated at directory `dist` which can then be `pip`-installed like so.

```
python -m pip install dist\jl95terceira_batteries-...whl
```

# Test

To implement tests, use `unittest`.
To run the tests, run the following command at the top directory.

```
python -m unittest
```
