Metadata-Version: 2.1
Name: MORPHO-toolkit
Version: 0.2.1.dev0
Summary: The MORPHO data-science toolkit.
Author: EstesJorie
Author-email: EstesJorie <joe.tresise@aol.com>
License: MIT
Project-URL: Source, https://github.com/EstesJorie/Morpho
Project-URL: Tracker, https://github.com/EstesJorie/Morpho/issues
Keywords: data analysis,data science
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas ==2.0.0
Requires-Dist: glob2 ==0.7
Requires-Dist: tqdm ==4.66.3
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: seaborn
Requires-Dist: scikit-learn
Requires-Dist: scipy
Requires-Dist: statsmodels
Requires-Dist: icecream
Requires-Dist: colorama >=0.4.4
Requires-Dist: pytest
Provides-Extra: dev
Requires-Dist: plotly ; extra == 'dev'
Requires-Dist: xlrd ; extra == 'dev'

# Morpho Toolkit
![Python](https://img.shields.io/badge/language-python-blue?logo=python&logoColor=white)
[![PyPI version](https://img.shields.io/pypi/v/MORPHO-toolkit?label=PyPI)](https://pypi.org/project/MORPHO-toolkit/)
![Python versions](https://img.shields.io/pypi/pyversions/MORPHO-toolkit)
![Status](https://img.shields.io/badge/status-in%20development-orange)
![Requirements](https://img.shields.io/librariesio/release/pypi/MORPHO-toolkit)
![GitHub language top](https://img.shields.io/github/languages/top/EstesJorie/Morpho)
[![License](https://img.shields.io/github/license/EstesJorie/Morpho)](https://github.com/EstesJorie/Morpho/blob/main/LICENSE)
[![Issues](https://img.shields.io/github/issues/EstesJorie/Morpho)](https://github.com/EstesJorie/Morpho/issues)
![Commits](https://badgen.net/github/commits/EstesJorie/Morpho)
[![Last Commit](https://img.shields.io/github/last-commit/EstesJorie/Morpho)](https://github.com/EstesJorie/Morpho/commits/main)




<p align="center">
    <img src="images/MORPHO_light_header.png" alt="Morpho Header" width="50%">
</p>

 Welcome to the Morpho toolkit. The Morpho toolkit is designed to streamline and
 speedup your data science workflow. The toolkit features numerous "template" files
 designed to be imported into your current file which then allows you to access
 various functions encapsulating the data science pipeline.
 
 ## Cloning/Installation 
 
 To clone the repository, type into your terminal:
 
 > git clone https://github.com/EstesJorie/Morpho.git

## Dependency Installation

- PIP
To install all of the required dependecies, type into your terminal:

> pip install -r requirements.txt

- CONDA
There are two options for dependcy installation for Conda, the first involves activating the provided .yml file, the second involves creating your own environment with pip and then installing the required dependecies. To activate the provided .yml environment, enter:

> conda env create -f environment.yml
> conda activate MORPHO

For PIP, type the following commands into your terminal:

> conda create --name [name] python=3.[ver]
> conda activate [envname]
> conda install pip
> pip install -r requirements.txt

## Further Documentation

To further information relating to the Main branch, see the [main docs](docs/README-main.md) for more details.

To further information pertaining to the Dev branch, see the [development docs](docs/README-dev.md) for more information.
