summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-05-30 21:20:19 -0400
committerMichael Trier <mtrier@gmail.com>2008-05-30 21:20:19 -0400
commit8c982c1f50bd7ae3bc4a1afc09e9ad11aecd434f (patch)
tree4fb39f35ffc73f8fffb2ad647d61fa2b984da55b /setup.py
parent273400f95ae036c01d4b0fd7a7ca6ab160efd958 (diff)
downloadgitpython-8c982c1f50bd7ae3bc4a1afc09e9ad11aecd434f.tar.gz
couple fixes to setup
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
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, []