Installation

Requirements

LimeSoDa requires Python 3.8 or later. It also depends on the following Python packages:

  • numpy >= 1.23.0

  • pandas >= 1.5.0

  • scikit-learn >= 1.0.0

Optional development dependencies:

  • pytest >= 7.0.0

  • black >= 22.0.0

  • isort >= 5.0.0

  • flake8 >= 4.0.0

Installing with pip

You can install LimeSoDa using pip:

pip install LimeSoDa

For development dependencies:

pip install LimeSoDa[dev]

Installing from source

To install LimeSoDa from source:

  1. Clone the repository:

    git clone https://github.com/a11to1n3/LimeSoDa.git
    cd LimeSoDa
    
  2. Install the package:

    pip install -e .
    

    For development dependencies:

    pip install -e .[dev]
    

Verifying Installation

To verify that LimeSoDa is installed correctly, you can run:

import LimeSoDa
print(LimeSoDa.__version__)

This should print the version number of the installed package.