pylibfdt: Fix code style in setup.py
We should follow PEP8 even for our setup() call. Signed-off-by: Simon Glass <sjg@chromium.org> Suggested-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
1c5170d3a4
commit
b04a2cf088
1 changed files with 9 additions and 8 deletions
|
@ -24,11 +24,12 @@ libfdt_module = Extension(
|
|||
extra_compile_args = cflags
|
||||
)
|
||||
|
||||
setup (name = 'libfdt',
|
||||
version = version,
|
||||
author = "Simon Glass <sjg@chromium.org>",
|
||||
description = """Python binding for libfdt""",
|
||||
ext_modules = [libfdt_module],
|
||||
package_dir = {'': objdir},
|
||||
py_modules = ["libfdt"],
|
||||
)
|
||||
setup(
|
||||
name='libfdt',
|
||||
version= version,
|
||||
author='Simon Glass <sjg@chromium.org>',
|
||||
description='Python binding for libfdt',
|
||||
ext_modules=[libfdt_module],
|
||||
package_dir={'': objdir},
|
||||
py_modules=['libfdt'],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue