Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
aabmets committed Aug 20, 2022
1 parent 6d741a5 commit 45f3df5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# DEAP-ER

DEAP-ER is a full rework of the original DEAP library for Python 3.10 and up.


## Description

DEAP-ER is a novel evolutionary computation framework for rapid prototyping and testing of ideas.
DEAP-ER is a complete rework and refactor of the original DEAP evolutionary
computation framework library for Python 3.9, 3.10 and up.
It seeks to make algorithms explicit and data structures transparent.
It works in perfect harmony with parallelization mechanisms such as
multiprocessing and [SCOOP](https://github.com/soravux/scoop).
multiprocessing and [Ray](https://github.com/ray-project/ray).

DEAP includes the following features:

Expand Down Expand Up @@ -40,8 +36,7 @@ pip install deap-er

## Importing
```python
# see the docs for available modules
from deap_er import *
from deap_er import base, creator, tools, env, gp
```


Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
name = "deap-er"
version = "2.0.0"
description = "Distributed Evolutionary Algorithms in Python - Entirely Reworked"
authors = ["Mattias Aabmets <[email protected]>"]
readme = "README.md"
license = "MIT License"
authors = [
"Mattias Aabmets <[email protected]>"
]
keywords = [
"deap",
"evolution",
"evolutionary algorithms",
"genetic algorithms",
"genetic programming",
Expand Down

0 comments on commit 45f3df5

Please sign in to comment.