Skip to content

Commit

Permalink
Moving blimpy to its own repo
Browse files Browse the repository at this point in the history
git-svn-id: https://projects.coin-or.org/svn/CoinBazaar/projects/GIMPy/trunk@1091 5eb3cf9a-c56f-4155-9a08-806ae8551a6d
  • Loading branch information
tkralphs committed Jan 13, 2014
1 parent a408b78 commit 804af24
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 994 deletions.
1 change: 0 additions & 1 deletion Makefile.am
Expand Up @@ -19,7 +19,6 @@ AUTOMAKE_OPTIONS = foreign
########################################################################

SUBDIRS = src/gimpy
SUBDIRS += src/blimpy

# We don't want to compile the test subdirectory, unless the test target is
# specified. But we need to list it as subdirectory to make sure that it is
Expand Down
1 change: 0 additions & 1 deletion configure.ac
Expand Up @@ -85,7 +85,6 @@ AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != "" ])

AC_CONFIG_FILES([Makefile
src/gimpy/Makefile
src/blimpy/Makefile
test/Makefile])

# Finally, we let configure write all the output...
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -4,14 +4,15 @@
import setuptools

setup(name='coinor.gimpy',
version='1.0.3',
version='1.1.0',
description='Graph Methods in Python',
long_description='GiMPy is yet another graph class in Python. It is part of the COIN-OR software repository (www.coin-or.org). The class includes implementations of a range of standard graph algorithms. The goal of the implementations is clarity and the package includes visualizations for most of the methods. It is intended for educational/research purposes. The implementations are as efficient as possible, but where tradeoffs have to be made, clarity and ability to visualize are emphasized above efficiency. For this reason, the package is pure Python (and thus will not be as fast as other graph classes with C extensions). Visualization is done using Graphviz, which should be installed in order to do any visualization. Graphs can be displayed using either pygame (live), PIL (static), xdot (live), gexf (static display in browser), or dot2tex (set in LaTex). The GiMPy distribution includes two packages: GiMPy itself and a set of helper data structures called BLiMPy (Basic List Implementation in Python).',
long_description='GiMPy is yet another graph class in Python. It is part of the COIN-OR software repository (www.coin-or.org). The class includes implementations of a range of standard graph algorithms. The goal of the implementations is clarity and the package includes visualizations for most of the methods. It is intended for educational/research purposes. The implementations are as efficient as possible, but where tradeoffs have to be made, clarity and ability to visualize are emphasized above efficiency. For this reason, the package is pure Python (and thus will not be as fast as other graph classes with C extensions). Visualization is done using Graphviz, which should be installed in order to do any visualization. Graphs can be displayed using either pygame (live), PIL (static), xdot (live), gexf (static display in browser), or dot2tex (set in LaTex).',
author='Aykut Bulut, Ted Ralphs',
author_email='{aykut,ted}@lehigh.edu',
license='Eclipse Public License',
url='http://projects.coin-or.org/CoinBazaar/wiki/Projects/GIMPy',
namespace_packages=['coinor'],
packages=['coinor.gimpy','coinor.blimpy','coinor'],
packages=['coinor.gimpy','coinor'],
package_dir = {'coinor': 'src'},
install_requires=['coinor.blimpy']
)
318 changes: 0 additions & 318 deletions src/blimpy/LinkedList.py

This file was deleted.

23 changes: 0 additions & 23 deletions src/blimpy/Makefile.am

This file was deleted.

0 comments on commit 804af24

Please sign in to comment.