--- a/src/setup.py Tue Dec 04 12:10:16 2012 +0100
+++ b/src/setup.py Tue Dec 04 12:19:06 2012 +0100
@@ -4,6 +4,7 @@
from distutils.command.install import INSTALL_SCHEMES
import sys
+MODULE = 'hashcut'
class osx_install_data(install_data):
# On MacOS, the platform-specific lib dir is /System/Library/Framework/Python/.../
@@ -43,7 +44,7 @@
root_dir = os.path.dirname(__file__)
if root_dir != '':
os.chdir(root_dir)
- source_dir = 'ldt'
+ source_dir = MODULE
version_variables = {}
try:
@@ -93,7 +94,7 @@
setup(
script_name = script_name,
script_args = script_args,
- name='hashcut',
+ name=MODULE,
version=version,
author='IRI',
author_email='contact@iri.centrepompidou.fr',