]> gitweb.michael.orlitzky.com - dunshire.git/blob - setup.py
Remove a superfluous transpose.
[dunshire.git] / setup.py
1 from setuptools import setup
2
3 # Stolen from the setuptools documentation.
4 def read(fname):
5 from os.path import dirname, join
6 return open(join(dirname(__file__), fname)).read()
7
8 # Don't list "test" in packages, because we don't want it installed.
9 setup(
10 name = 'dunshire',
11 version = '0.1.1',
12 author = 'Michael Orlitzky',
13 author_email = 'michael@orlitzky.com',
14 url = 'http://michael.orlitzky.com/code/dunshire/',
15 keywords = 'game theory, cone programming, optimization',
16 packages = ['dunshire'],
17 description = 'A library for solving linear games over symmetric cones',
18 long_description = read('doc/README.rst'),
19 license = 'AGPLv3+',
20 install_requires = [ 'cvxopt >= 1.1.8' ],
21 test_suite = 'test.build_suite',
22 classifiers=[
23 'Development Status :: 3 - Alpha',
24 'Intended Audience :: Science/Research',
25 'Programming Language :: Python :: 3.4',
26 'Programming Language :: Python :: 3.5',
27 ]
28 )