another try
authorMoritz Kiefer <moritz.kiefer@gmail.com>
Tue, 15 Jan 2013 19:13:54 +0000 (20:13 +0100)
committerMoritz Kiefer <moritz.kiefer@gmail.com>
Tue, 15 Jan 2013 19:13:54 +0000 (20:13 +0100)
diaspy/__init__.py [new file with mode: 0644]
docs/source/conf.py
setup.py [new file with mode: 0644]

diff --git a/diaspy/__init__.py b/diaspy/__init__.py
new file mode 100644 (file)
index 0000000..00322e8
--- /dev/null
@@ -0,0 +1,3 @@
+pass
+pass
+pass
index 7f47030e4dbb9f28a8ba5f8f6ece4da191cf9872..3b9c0e87182ad0ee6b6c608b36ef2e9f4feffceb 100644 (file)
@@ -18,7 +18,6 @@ import sys, os
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 #sys.path.insert(0, os.path.abspath('.'))
-sys.path.insert(0, os.path.abspath(os.path.join(os.pardir, os.pardir)))
 
 # -- General configuration -----------------------------------------------------
 
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..28343ff
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,8 @@
+from distutils.core import setup
+setup(name='diaspy',
+      version='1.0',
+      author='Moritz Kiefer',
+      author_email='moritz.kiefer@gmail.com',
+      py_modules=['diaspy.diaspy'],
+      requires=['requests']
+      )