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
|
extra_compile_args = cflags
|
||||||
)
|
)
|
||||||
|
|
||||||
setup (name = 'libfdt',
|
setup(
|
||||||
version = version,
|
name='libfdt',
|
||||||
author = "Simon Glass <sjg@chromium.org>",
|
version= version,
|
||||||
description = """Python binding for libfdt""",
|
author='Simon Glass <sjg@chromium.org>',
|
||||||
ext_modules = [libfdt_module],
|
description='Python binding for libfdt',
|
||||||
package_dir = {'': objdir},
|
ext_modules=[libfdt_module],
|
||||||
py_modules = ["libfdt"],
|
package_dir={'': objdir},
|
||||||
)
|
py_modules=['libfdt'],
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue