From 94bda0aa627388ba179e751820ee04cf9d9c98db Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Tue, 15 Jan 2013 20:13:54 +0100 Subject: [PATCH] another try --- diaspy/__init__.py | 3 +++ docs/source/conf.py | 1 - setup.py | 8 ++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 diaspy/__init__.py create mode 100644 setup.py diff --git a/diaspy/__init__.py b/diaspy/__init__.py new file mode 100644 index 0000000..00322e8 --- /dev/null +++ b/diaspy/__init__.py @@ -0,0 +1,3 @@ +pass +pass +pass diff --git a/docs/source/conf.py b/docs/source/conf.py index 7f47030..3b9c0e8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 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'] + ) -- 2.25.1