From 8c982c1f50bd7ae3bc4a1afc09e9ad11aecd434f Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Fri, 30 May 2008 21:20:19 -0400 Subject: couple fixes to setup --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 434e4fb7..6386f2fb 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ v.close() class build_py(_build_py): def run(self): - init = path.join(self.build_lib, 'git_python', '__init__.py') + init = path.join(self.build_lib, 'git', '__init__.py') if path.exists(init): os.unlink(init) _build_py.run(self) @@ -22,13 +22,13 @@ class build_py(_build_py): class sdist(_sdist): def make_release_tree (self, base_dir, files): _sdist.make_release_tree(self, base_dir, files) - orig = path.join('lib', 'git_python', '__init__.py') + orig = path.join('lib', 'git', '__init__.py') assert path.exists(orig) dest = path.join(base_dir, orig) if hasattr(os, 'link') and path.exists(dest): os.unlink(dest) self.copy_file(orig, dest) - _stamp_version(dest) + # _stamp_version(dest) def _stamp_version(filename): found, out = False, [] -- cgit v1.2.1