]> gitweb.michael.orlitzky.com - dunshire.git/blob - setup.py
Use the DEBUG_FLOAT_FORMAT when printing exception details.
[dunshire.git] / setup.py
1 from setuptools import setup
2
3 setup(
4 name = 'dunshire',
5 version = '0.0.1',
6 author = 'Michael Orlitzky',
7 author_email = 'michael@orlitzky.com',
8 url = 'http://michael.orlitzky.com/code/dunshire.xhtml',
9 packages = ['dunshire'],
10 description = 'A library for solving linear (cone) games',
11 license = 'doc/LICENSE',
12 install_requires = [ 'cvxopt >= 1.1.8' ],
13 test_suite = 'test.build_suite'
14 )