Metadata-Version: 2.4
Name: arsenal
Version: 3.1.3
Summary: Arsenal of python utilities
Author-email: Tim Vieira <tim.f.vieira@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: cython
Requires-Dist: matplotlib
Requires-Dist: gprof2dot
Requires-Dist: graphviz
Requires-Dist: rich
Requires-Dist: path.py
Requires-Dist: IPython
Requires-Dist: tqdm
Requires-Dist: psutil

# Arsenal

The arsenal is an assortment of python utilities that I can't live without.

## Documentation

[Read the Docs](https://python-arsenal.readthedocs.io/en/latest/)

## Setup

Optional: Create and activate a virtual environment:

```bash
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
```

To install the latest release:

```bash
pip install arsenal
```
    
To install the latest version from GitHub:

```bash
pip install git+https://github.com/timvieira/arsenal.git
```

Alternatively,

```bash
git clone https://github.com/timvieira/arsenal.git
cd arsenal
pip install -e .
```

## Running Tests

To run the test suite:

```bash
python -m unittest discover arsenal/tests
```

You can also run specific test files:

```bash
python -m unittest arsenal/tests/test_specific.py
```
