X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=274216c4ab9b2898be7408fd500c5e894d49e5f7;hb=dd63af7e3d3ec6b0f5ae78932c5e67df6b4fb29c;hp=77cdcbb766100bc752a04c265b60b0eabda46552;hpb=328505ae48bc847a5dc4a41a14b6564360f2c5ef;p=dunshire.git diff --git a/setup.py b/setup.py index 77cdcbb..274216c 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,28 @@ from setuptools import setup +# Stolen from the setuptools documentation. +def read(fname): + from os.path import dirname, join + return open(join(dirname(__file__), fname)).read() + +# Don't list "test" in packages, because we don't want it installed. setup( name = 'dunshire', - version = '0.0.1', + version = '0.1.1', author = 'Michael Orlitzky', author_email = 'michael@orlitzky.com', - url = 'http://michael.orlitzky.com/code/dunshire.xhtml', + url = 'http://michael.orlitzky.com/code/dunshire/', + keywords = 'game theory, cone programming, optimization', packages = ['dunshire'], - description = 'A library for solving linear (cone) games', - license = 'doc/LICENSE', + description = 'A library for solving linear games over symmetric cones', + long_description = read('doc/README.rst'), + license = 'AGPLv3+', install_requires = [ 'cvxopt >= 1.1.8' ], - test_suite = 'test.build_suite' + test_suite = 'test.build_suite', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Science/Research', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + ] )