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.
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+',