Skip to content

Commit 369eef7

Browse files
committed
Automatically finding packages and updating version number
1 parent ddd2054 commit 369eef7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#!/usr/bin/env python
22

3-
from setuptools import setup
4-
import setuptools
3+
from setuptools import setup, find_packages
54

65
setup(name='coinor.grumpy',
7-
version='0.9.4',
6+
version='0.95.0',
87
description='Graphics for Understanding Mathematical Programming (GrUMPy)',
98
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.
109
@@ -23,9 +22,9 @@
2322
license='Eclipse Public License',
2423
url='https://github.com/tkralphs/GrUMPy/',
2524
namespace_packages=['coinor'],
26-
packages=['coinor.grumpy','coinor'],
25+
packages=[pkg.replace('src','coinor') for pkg in find_packages()],
2726
package_data={'':['*.vbc']},
2827
include_package_data=True,
2928
package_dir = {'coinor': 'src'},
30-
install_requires=['coinor.gimpy>=2.0.0', 'pulp']
29+
install_requires=['coinor.gimpy>=2.1.0', 'pulp']
3130
)

0 commit comments

Comments
 (0)