Metadata-Version: 2.1
Name: genalpy
Version: 0.1.0
Summary: Genetic algorithms library
Home-page: https://genalpy.readthedocs.io/
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
Requires-Dist: numpy
Requires-Dist: matplotlib

# 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
multiplication = Solver(2)

# Call the multiply method
result = multiplication.multiply(5)
```

How to solve the traveling salesman problem:

```Python
from genalpy import Solver

# Instantiate a Multiplication object
multiplication = Solver(2)

# Call the multiply method
result = multiplication.multiply(5)
```

