summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--setup.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index aa5d6c0..c2268cb 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ all:
python setup.py build
test:
- export PYTHONPATH=./lib && python -m thandy.tests
+ export PYTHONPATH=./lib/ && python -m thandy/tests
install:
- python setup.py install \ No newline at end of file
+ python setup.py install
diff --git a/setup.py b/setup.py
index 88116f2..f8622b7 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ def makescripts(extrapath=None):
if extrapath:
f.write('PYTHONPATH="$PYTHONPATH:%s"\n'%extrapath)
f.write('export PYTHONPATH\n')
- f.write('%s -m thandy.%s "$@"\n' %(sys.executable, modname))
+ f.write('%s -m thandy/%s "$@"\n' %(sys.executable, modname))
f.close()
SCRIPTS.append(fname)