From: Michael Orlitzky Date: Wed, 16 Nov 2016 02:52:36 +0000 (-0500) Subject: Bump to v0.1.1 and disable installation of the "test" module. X-Git-Tag: 0.1.1^0 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=3a2fd13fca053766a8860d2270f6fd693688ec8f Bump to v0.1.1 and disable installation of the "test" module. --- diff --git a/MANIFEST.in b/MANIFEST.in index 031b8a0..a37b9f3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include doc/README.rst include doc/LICENSE recursive-include doc/build/html * +recursive-include test * diff --git a/doc/source/conf.py b/doc/source/conf.py index d8c6a9b..1aeca66 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -40,10 +40,10 @@ copyright = '2016, Michael Orlitzky' author = 'Michael Orlitzky' # The short X.Y version. -version = '0.1.0' +version = '0.1.1' # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = '0.1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. 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+',