Metadata-Version: 2.1
Name: arsenal
Version: 3.0.2
Summary: Arsenal of python utilities.
Home-page: https://github.com/timvieira/arsenal/
Author: Tim Vieira
Author-email: tim.f.vieira@gmail.com
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
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: cython
Requires-Dist: orderedset
Requires-Dist: matplotlib
Requires-Dist: gprof2dot
Requires-Dist: path.py

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/)

### Installation
Below are two method to install this repo.

1) Clone and pip-install
```
$ git clone https://github.com/timvieira/arsenal.git
$ cd arsenal 
$ pip install .
```
Now, if you like, you can delete the directory `rm -rf ../arsenal`.

2) Use pip for the whole thing.
```
$ pip install -r https://raw.githubusercontent.com/timvieira/arsenal/master/requirements.txt
$ pip install git+https://github.com/timvieira/arsenal.git 
```
Unforuntately, just running the second command fails to identify the requirements file.
