commit 5ee673957e70f4e6a0d19b15c4005a9907006c5f Author: Dustin C. Hatch Date: Sun Mar 13 16:46:42 2011 -0500 Started the Milla project, a simple WSGI web framework diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..27cc2cc --- /dev/null +++ b/.hgignore @@ -0,0 +1,3 @@ + +syntax: regexp +^build$ \ No newline at end of file diff --git a/.project b/.project new file mode 100644 index 0000000..a79033f --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + Milla + + + + + + org.python.pydev.PyDevBuilder + + + + + + org.python.pydev.pythonNature + + diff --git a/.pydevproject b/.pydevproject new file mode 100644 index 0000000..92d36c7 --- /dev/null +++ b/.pydevproject @@ -0,0 +1,10 @@ + + + + +Default +python 2.6 + +/Milla/src + + diff --git a/src/milla/__init__.py b/src/milla/__init__.py new file mode 100644 index 0000000..e7beb37 --- /dev/null +++ b/src/milla/__init__.py @@ -0,0 +1,3 @@ +'''Milla is an extremely simple WSGI framework for web applications + +''' \ No newline at end of file