summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2021-11-10 19:11:34 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2021-11-11 14:34:51 +1100
commit69a760747d8d9d1c5dcceebc05e868e1eaf13a2b (patch)
tree35434caa61eea4b75438d703acd2dd5558d34aa4
parent0b106a77dbdc34ef809526febafc490b90d79a54 (diff)
downloaddevice-tree-compiler-69a760747d8d9d1c5dcceebc05e868e1eaf13a2b.tar.gz
pylibfdt: Split setup.py author name and email
The 'author' field in setup.py is supposed to be just the name. The email address goes in 'author_email' field. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20211111011135.2386773-4-robh@kernel.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rwxr-xr-xpylibfdt/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylibfdt/setup.py b/pylibfdt/setup.py
index 52b61b6..75ce09a 100755
--- a/pylibfdt/setup.py
+++ b/pylibfdt/setup.py
@@ -41,7 +41,8 @@ setup(
"root": os.path.join(srcdir, '..'),
},
setup_requires = ['setuptools_scm'],
- author='Simon Glass <sjg@chromium.org>',
+ author='Simon Glass',
+ author_email='sjg@chromium.org',
description='Python binding for libfdt',
ext_modules=[libfdt_module],
package_dir={'': srcdir},