diff --git a/setup.py b/setup.py index 0e2ae90..9bdf7ff 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import setuptools setup(name='coinor.grumpy', - version='0.6.3', + version='0.6.4', description='Graphics for Understanding Mathematical Programming (GrUMPy)', long_description='''GrUMPy is a class for visualizing various algorithm used in solving discrete optimization problem. It has a class for dynamically generating and visualizing branch-and-bound trees that is derived from the GiMPy graph class. Using the branch-and-bound class, a user can visualize the branch-and-bound process in a number of different ways either by building the tree dynamically through direct calls to Python from the solver or by piping the output of an instrumented solver to GrUMPy for parsing. The branch-and-bound class also includes a pure Python implementation of branch and bound that is targeted at educational use.