Flat directory hierarchy: move src/pygit2/ to src/

This commit is contained in:
J. David Ibáñez 2013-02-04 12:51:28 +01:00
parent b0a93435eb
commit 5343d28ca5
17 changed files with 2 additions and 4 deletions

@ -57,10 +57,8 @@ if libgit2_path is None:
libgit2_bin = os.path.join(libgit2_path, 'bin')
libgit2_include = os.path.join(libgit2_path, 'include')
libgit2_lib = os.getenv('LIBGIT2_LIB', os.path.join(libgit2_path, 'lib'))
pygit2_exts = [os.path.join('src', 'pygit2.c')] + [
os.path.join('src', 'pygit2', entry)
for entry in os.listdir('src/pygit2')
if entry.endswith('.c')]
pygit2_exts = [ os.path.join('src', name) for name in os.listdir('src')
if name.endswith('.c') ]
class TestCommand(Command):
"""Command for running unittests without install."""