pep8 fixes for setup.py

as reported by flake8
This commit is contained in:
Valentin Haenel
2013-03-08 22:02:26 +01:00
parent 86b063fbd0
commit 8d8416e083

View File

@@ -64,8 +64,9 @@ if libgit2_path is None:
libgit2_bin = os.path.join(libgit2_path, 'bin') libgit2_bin = os.path.join(libgit2_path, 'bin')
libgit2_include = os.path.join(libgit2_path, 'include') libgit2_include = os.path.join(libgit2_path, 'include')
libgit2_lib = os.getenv('LIBGIT2_LIB', os.path.join(libgit2_path, 'lib')) libgit2_lib = os.getenv('LIBGIT2_LIB', os.path.join(libgit2_path, 'lib'))
pygit2_exts = [ os.path.join('src', name) for name in os.listdir('src') pygit2_exts = [os.path.join('src', name) for name in os.listdir('src')
if name.endswith('.c') ] if name.endswith('.c')]
class TestCommand(Command): class TestCommand(Command):
"""Command for running unittests without install.""" """Command for running unittests without install."""
@@ -155,7 +156,6 @@ class sdist_files_from_git(sdist):
self.write_manifest() self.write_manifest()
cmdclass = { cmdclass = {
'test': TestCommand, 'test': TestCommand,
'sdist': sdist_files_from_git} 'sdist': sdist_files_from_git}
@@ -183,7 +183,7 @@ setup(name='pygit2',
maintainer=u('J. David Ibáñez'), maintainer=u('J. David Ibáñez'),
maintainer_email='jdavid.ibp@gmail.com', maintainer_email='jdavid.ibp@gmail.com',
long_description=long_description, long_description=long_description,
packages = ['pygit2'], packages=['pygit2'],
ext_modules=[ ext_modules=[
Extension('_pygit2', pygit2_exts, Extension('_pygit2', pygit2_exts,
include_dirs=[libgit2_include, 'include'], include_dirs=[libgit2_include, 'include'],