]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Add some pointless fluff to my setup.py, and start at v0.1.0.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 15 Nov 2016 03:27:13 +0000 (22:27 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 15 Nov 2016 03:27:13 +0000 (22:27 -0500)
setup.py

index 77cdcbb766100bc752a04c265b60b0eabda46552..8efa6ea3e5d5bcdd16bdf92559799710cdfe3d68 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,14 +1,27 @@
 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()
+
 setup(
     name         = 'dunshire',
-    version      = '0.0.1',
+    version      = '0.1.0',
     author       = 'Michael Orlitzky',
     author_email = 'michael@orlitzky.com',
     url          = 'http://michael.orlitzky.com/code/dunshire.xhtml',
+    keywords     = 'game theory, cone programming, optimization',
     packages     = ['dunshire'],
     description  = 'A library for solving linear (cone) games',
+    long_description = read('doc/README.rst'),
     license      = 'doc/LICENSE',
     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',
+    ]
 )