from setuptools import setup setup( name = 'dunshire', version = '0.0.1', author = 'Michael Orlitzky', author_email = 'michael@orlitzky.com', url = 'http://michael.orlitzky.com/code/dunshire.xhtml', packages = ['dunshire'], description = 'A library for solving linear (cone) games', license = 'doc/LICENSE', install_requires = [ 'cvxopt >= 1.1.8' ], test_suite = 'test.build_suite' )