summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
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, []