Initial commit
authorKristoffer Grönlund <kristoffer.gronlund@purplescout.se>
Tue, 29 Dec 2009 06:16:46 +0000 (07:16 +0100)
committerKristoffer Grönlund <kristoffer.gronlund@purplescout.se>
Sat, 2 Jan 2010 23:37:43 +0000 (00:37 +0100)
.gitignore [new file with mode: 0644]
jamaendo/__init__.py [new file with mode: 0644]
jamaui/__init__.py [new file with mode: 0644]
setup.py [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..76751ec
--- /dev/null
@@ -0,0 +1,4 @@
+*.pyc
+*.pyo
+*~
+#*.*#
diff --git a/jamaendo/__init__.py b/jamaendo/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/jamaui/__init__.py b/jamaui/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..c898aab
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+from setuptools import setup, find_packages\r
+\r
+import sys\r
+setup(\r
+    name = "jamaendo",\r
+    version = "0.0.1",\r
+    author = "Kristoffer Gronlund",\r
+    author_email = "kristoffer.gronlund@purplescout.se",\r
+    url = "http://github.com/krig/jamaendo",\r
+    packages = find_packages(exclude=['tests']),\r
+    zip_safe=False,\r
+    test_suite='tests.test_suite',\r
+    )\r
+\r