Metadata-Version: 2.1
Name: genalpy
Version: 0.1.4
Summary: Genetic algorithms library
Home-page: https://genalpy-lib.readthedocs.io/en/latest/
Author: Mariia Kryvets
Author-email: mkrivets1@email.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Genetic algorithms with genalpy
Genalpy is an easy-to-use Python library to solve different types of optimization problems using genetic algorithms. 

### Installation
```
pip install genalpy
```

### Get started
How to find the extremum of a function:

```Python
from genalpy import Solver

# Instantiate a Multiplication object
extremum_solver = Solver(function='-x*x + 4', goal='max', dimensions=2, boundaries=[-100, 100])

# Call the solve method
result = extremum_solver.solve()
```


