diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-30 21:20:19 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-30 21:20:19 -0400 |
commit | 8c982c1f50bd7ae3bc4a1afc09e9ad11aecd434f (patch) | |
tree | 4fb39f35ffc73f8fffb2ad647d61fa2b984da55b /setup.py | |
parent | 273400f95ae036c01d4b0fd7a7ca6ab160efd958 (diff) | |
download | gitpython-8c982c1f50bd7ae3bc4a1afc09e9ad11aecd434f.tar.gz |
couple fixes to setup
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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, [] |