]> gitweb.michael.orlitzky.com - dunshire.git/blob - setup.py
Reword two paragraphs in the overview.
[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 setup(
9 name = 'dunshire',
10 version = '0.1.0',
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',
21 classifiers=[
22 'Development Status :: 3 - Alpha',
23 'Intended Audience :: Science/Research',
24 'Programming Language :: Python :: 3.4',
25 'Programming Language :: Python :: 3.5',
26 ]
27 )