]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - setup.py
Add setup.py and reorganize everything to make its "test" command happy.
[dunshire.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..8e81428
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+from setuptools import setup
+
+setup(
+    name         = 'dunshire',
+    version      = '0.0.1',
+    author       = 'Michael Orlitzky',
+    author_email = 'michael@orlitzky.com',
+    url          = 'http://michael.orlitzky.com/code/dunshire.php',
+    packages     = ['dunshire'],
+    description  = 'A library for solving linear (cone) games',
+    license      = 'doc/LICENSE',
+    install_requires = [ 'cvxopt >= 1.1.8' ],
+    test_suite = 'test.build_suite'
+)