]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - setup.py
Remove a superfluous transpose.
[dunshire.git] / setup.py
index e9e8801242a7164ecc0c738aa19edd826b217177..274216c4ab9b2898be7408fd500c5e894d49e5f7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,15 +5,16 @@ def read(fname):
     from os.path import dirname, join
     return open(join(dirname(__file__), fname)).read()
 
+# Don't list "test" in packages, because we don't want it installed.
 setup(
     name         = 'dunshire',
-    version      = '0.1.0',
+    version      = '0.1.1',
     author       = 'Michael Orlitzky',
     author_email = 'michael@orlitzky.com',
     url          = 'http://michael.orlitzky.com/code/dunshire/',
     keywords     = 'game theory, cone programming, optimization',
-    packages     = ['dunshire', 'test'],
-    description  = 'A library for solving linear (cone) games',
+    packages     = ['dunshire'],
+    description  = 'A library for solving linear games over symmetric cones',
     long_description = read('doc/README.rst'),
     license      = 'AGPLv3+',
     install_requires = [ 'cvxopt >= 1.1.8' ],