X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=213234a46f26570d1c1bbb4d6f1bc9d6cf5b10b0;hb=7837b7fff14547167fce6d4ba37c0c955f482cf6;hp=e9e8801242a7164ecc0c738aa19edd826b217177;hpb=4a1433f8dc0aec61f6396e14b98c0f11f10ce0e4;p=dunshire.git diff --git a/setup.py b/setup.py index e9e8801..213234a 100644 --- 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' ], @@ -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', ] )