]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - setup.py
dunshire/games.py: don't require numpy to run the doctests.
[dunshire.git] / setup.py
index 8efa6ea3e5d5bcdd16bdf92559799710cdfe3d68..213234a46f26570d1c1bbb4d6f1bc9d6cf5b10b0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,17 +5,18 @@ 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.xhtml',
+    url          = 'http://michael.orlitzky.com/code/dunshire/',
     keywords     = 'game theory, cone programming, optimization',
     packages     = ['dunshire'],
-    description  = 'A library for solving linear (cone) games',
+    description  = 'A library for solving linear games over symmetric cones',
     long_description = read('doc/README.rst'),
-    license      = 'doc/LICENSE',
+    license      = 'AGPLv3+',
     install_requires = [ 'cvxopt >= 1.1.8' ],
     test_suite = 'test.build_suite',
     classifiers=[
@@ -23,5 +24,8 @@ setup(
         'Intended Audience :: Science/Research',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
+        'Programming Language :: Python :: 3.8',
     ]
 )