summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-08-05 13:27:49 -0600
committerSimon Glass <sjg@chromium.org>2020-08-22 08:53:38 -0600
commit02c102074ddc0721db881118db6ffdc2fbb05ebb (patch)
tree692b63c28163230ba06df417e0b2128220adceec /tools
parent946ec8503737e4d9b2e9474939312c393ca092c0 (diff)
binman: Add a setup script for Python
Allow binman to be installed by adding a suitable setup.py script. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/setup.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/binman/setup.py b/tools/binman/setup.py
new file mode 100644
index 0000000000..fe408ed691
--- /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'])