summaryrefslogtreecommitdiff
path: root/tools/binman/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/setup.py')
-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 00000000000..bec078a3d9b
--- /dev/null
+++ b/tools/binman/setup.py
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+from setuptools import setup
+setup(name='binman',
+ version='1.0',
+ license='GPL-2.0+',
+ scripts=['binman'],
+ packages=['binman', 'binman.etype', 'binman.btool'],
+ package_dir={'binman': ''},
+ package_data={'binman': ['README.rst', 'entries.rst']},
+ classifiers=['Environment :: Console',
+ 'Topic :: Software Development :: Embedded Systems'])