X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=83977e76554672d0611b9fb674c8b5e24ea339d8;hb=HEAD;hp=213234a46f26570d1c1bbb4d6f1bc9d6cf5b10b0;hpb=7837b7fff14547167fce6d4ba37c0c955f482cf6;p=dunshire.git diff --git a/setup.py b/setup.py index 213234a..cf379f8 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ def read(fname): # Don't list "test" in packages, because we don't want it installed. setup( name = 'dunshire', - version = '0.1.1', + version = '0.1.3', author = 'Michael Orlitzky', author_email = 'michael@orlitzky.com', - url = 'http://michael.orlitzky.com/code/dunshire/', + url = 'http://michael.orlitzky.com/code/dunshire/index.xhtml', keywords = 'game theory, cone programming, optimization', packages = ['dunshire'], description = 'A library for solving linear games over symmetric cones', @@ -21,11 +21,8 @@ setup( test_suite = 'test.build_suite', classifiers=[ 'Development Status :: 3 - Alpha', - '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', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'Programming Language :: Python :: 3', + 'Intended Audience :: Science/Research' ] )