Merge branch 'master' of https://github.com/danielwilczak101/EasyGA
This commit is contained in:
5
setup.py
5
setup.py
@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
|
||||
|
||||
setup(
|
||||
name='EasyGA',
|
||||
version='0.0.32',
|
||||
version='0.0.33',
|
||||
description='EasyGA is a python package designed to provide an easy-to-use Genetic Algorithm. The package is designed to work right out of the box, while also allowing the user to customize features as they see fit.',
|
||||
py_modules=["EasyGA","attributes","test_EasyGA"],
|
||||
packages=find_packages(where='EasyGA'),
|
||||
@ -28,6 +28,7 @@ setup(
|
||||
],
|
||||
install_requires = ["matplotlib ~= 3.3.2",
|
||||
"pyserial ~= 3.4",
|
||||
"pytest>=3.7"
|
||||
"pytest>=3.7",
|
||||
"tabulate >=0.8.7"
|
||||
],
|
||||
)
|
||||
|
||||
@ -63,7 +63,7 @@ class Attributes:
|
||||
tournament_size_ratio = 0.10,
|
||||
current_generation = 0,
|
||||
current_fitness = 0,
|
||||
generation_goal = 15,
|
||||
generation_goal = 100,
|
||||
fitness_goal = None,
|
||||
tolerance_goal = None,
|
||||
percent_converged = 0.50,
|
||||
|
||||
Reference in New Issue
Block a user