From 3a2fd13fca053766a8860d2270f6fd693688ec8f Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 15 Nov 2016 21:52:36 -0500 Subject: [PATCH] Bump to v0.1.1 and disable installation of the "test" module. --- MANIFEST.in | 1 + doc/source/conf.py | 4 ++-- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) 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+', -- 2.43.2