X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=274216c4ab9b2898be7408fd500c5e894d49e5f7;hb=dd58b25641f37f52b7327b1b779a606c33e230eb;hp=5b9a19fb2ade44920a55fa678d1f466c4a8da509;hpb=be87298012852a14a382109f50a68ade9e287707;p=dunshire.git diff --git a/setup.py b/setup.py index 5b9a19f..274216c 100644 --- 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/', 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 = 'doc/LICENSE', + license = 'AGPLv3+', install_requires = [ 'cvxopt >= 1.1.8' ], test_suite = 'test.build_suite', classifiers=[