Further improvements to the documentation
authorMoritz Kiefer <moritz.kiefer@gmail.com>
Tue, 15 Jan 2013 20:57:35 +0000 (21:57 +0100)
committerMoritz Kiefer <moritz.kiefer@gmail.com>
Tue, 15 Jan 2013 20:57:35 +0000 (21:57 +0100)
.gitignore
diaspy.py [changed mode: 0755->0644]
docs/source/conf.py
setup.py

index e27f187cb39a88ba002525f0c8632c30c2171f8e..666aa6abc88d467125629a29a96539e8e42a0c9e 100644 (file)
@@ -1,4 +1,5 @@
 *~
 *.swp
 docs/build/*
-diaspy/__pycache__/*
+__pycache__/*
+
old mode 100755 (executable)
new mode 100644 (file)
index 8e5dab4..66d9d38
--- a/diaspy.py
+++ b/diaspy.py
@@ -1,5 +1,5 @@
 """
-.. module:: diaspora_api.diaspy
+.. module:: diaspy
    :platform: Unix, Windows
    :synopsis: Simple python api for diaspora
 
@@ -15,7 +15,7 @@ class Client:
 
     .. note::
 
-       Before calling any other function you have to call :func:`diaspy.diaspy.Client.login`.
+       Before calling any other function you have to call :func:`diaspy.Client.login`.
 
     """
 
index 3b9c0e87182ad0ee6b6c608b36ef2e9f4feffceb..7f47030e4dbb9f28a8ba5f8f6ece4da191cf9872 100644 (file)
@@ -18,6 +18,7 @@ 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 -----------------------------------------------------
 
index 679a86c500967fc810aefd8e4499ea3af0357c21..01c5dcf7f3282a56d8f14ba9da3ba62615d21c4e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 from distutils.core import setup
 setup(name='diaspy',
-      version='1.0',
+      version='0.0.1',
       author='Moritz Kiefer',
       author_email='moritz.kiefer@gmail.com',
       py_modules=['diaspy'],