-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
import setuptools | ||
|
||
setup(name='coinor.grumpy', | ||
version='0.85.0', | ||
version='0.9.0', | ||
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. | ||
|
@@ -19,11 +19,11 @@ | |
https://tkralphs.github.io/GrUMPy | ||
''', | ||
author='Aykut Bulut, Ted Ralphs', | ||
author_email='{aykut,ted}@lehigh.edu', | ||
author_email='[email protected]', | ||
license='Eclipse Public License', | ||
url='https://github.com/tkralphs/GrUMPy/', | ||
namespace_packages=['coinor'], | ||
packages=['coinor.grumpy','coinor.grumpy.examples','coinor'], | ||
package_dir = {'coinor': 'src'}, | ||
install_requires=['coinor.gimpy>=1.3.0', 'pulp'] | ||
install_requires=['coinor.gimpy>=2.0.0', 'pulp'] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters