X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=blobdiff_plain;f=setup.py;h=274216c4ab9b2898be7408fd500c5e894d49e5f7;hp=dd19cbc05bbde7f7dc0f3e90162b9bd1e5c355e9;hb=3a2fd13fca053766a8860d2270f6fd693688ec8f;hpb=4c946acce00821cab415ca7ed3af30df2ccf120d diff --git a/setup.py b/setup.py index dd19cbc..274216c 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,15 @@ 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'], + packages = ['dunshire'], description = 'A library for solving linear games over symmetric cones', long_description = read('doc/README.rst'), license = 'AGPLv3+',