]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - dunshire/__init__.py
Add setup.py and reorganize everything to make its "test" command happy.
[dunshire.git] / dunshire / __init__.py
diff --git a/dunshire/__init__.py b/dunshire/__init__.py
new file mode 100644 (file)
index 0000000..f754c92
--- /dev/null
@@ -0,0 +1,14 @@
+"""
+The "user interface" for Dunshire.
+
+Clients are intended to import everything from this module, which in
+turn pulls in everything that they would need to use the library.
+"""
+
+# Needed to construct the cone over which the game takes place.
+from .cones import (NonnegativeOrthant,
+                    IceCream,
+                    SymmetricPSD,
+                    CartesianProduct)
+
+from .games import SymmetricLinearGame