--- /dev/null
+"""
+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 symmetric_linear_game import SymmetricLinearGame
# Add '../' to our path.
from site import addsitedir
-addsitedir('.')
+addsitedir('./src/dunshire')
import cones
import matrices
import symmetric_linear_game