[PATCH 4/4] binman: Add a setup script for Python

Simon Glass sjg at chromium.org
Wed Aug 5 21:27:49 CEST 2020


Allow binman to be installed by adding a suitable setup.py script.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 tools/binman/setup.py | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 tools/binman/setup.py

diff --git a/tools/binman/setup.py b/tools/binman/setup.py
new file mode 100644
index 00000000000..fe408ed6911
--- /dev/null
+++ b/tools/binman/setup.py
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+from distutils.core import setup
+setup(name='binman',
+      version='1.0',
+      license='GPL-2.0+',
+      scripts=['binman'],
+      packages=['binman', 'binman.etype'],
+      package_dir={'binman': ''},
+      package_data={'binman': ['README', 'README.entries']},
+      classifiers=['Environment :: Console',
+                   'Topic :: Software Development :: Embedded Systems'])
-- 
2.28.0.163.g6104cc2f0b6-goog



More information about the U-Boot mailing list