]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Bump to v0.1.1 and disable installation of the "test" module. 0.1.1
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 16 Nov 2016 02:52:36 +0000 (21:52 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 16 Nov 2016 02:52:36 +0000 (21:52 -0500)
MANIFEST.in
doc/source/conf.py
setup.py

index 031b8a0801422653ca2e77e47535510b6502a605..a37b9f359bd1361e7c1e04821a6f27f91f650641 100644 (file)
@@ -1,3 +1,4 @@
 include doc/README.rst
 include doc/LICENSE
 recursive-include doc/build/html *
+recursive-include test *
index d8c6a9b0242862af8dc408fd6edbbe26a3232d7a..1aeca6672be2c1d69568828dd34caa86fc084b44 100644 (file)
@@ -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.
index dd19cbc05bbde7f7dc0f3e90162b9bd1e5c355e9..274216c4ab9b2898be7408fd500c5e894d49e5f7 100644 (file)
--- 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+',