]>
gitweb.michael.orlitzky.com - dunshire.git/blob - setup.py
4b9a0701bfff81b98d1ed31fd59c8fdd68a8b9cb
1 from setuptools
import setup
3 # Stolen from the setuptools documentation.
5 from os
.path
import dirname
, join
6 return open(join(dirname(__file__
), fname
)).read()
11 author
= 'Michael Orlitzky',
12 author_email
= 'michael@orlitzky.com',
13 url
= 'http://michael.orlitzky.com/code/dunshire.xhtml',
14 keywords
= 'game theory, cone programming, optimization',
15 packages
= ['dunshire', 'test'],
16 description
= 'A library for solving linear (cone) games',
17 long_description
= read('doc/README.rst'),
18 license
= 'doc/LICENSE',
19 install_requires
= [ 'cvxopt >= 1.1.8' ],
20 test_suite
= 'test.build_suite',
22 'Development Status :: 3 - Alpha',
23 'Intended Audience :: Science/Research',
24 'Programming Language :: Python :: 3.4',
25 'Programming Language :: Python :: 3.5',