Simon Glass | 02c1020 | 2020-08-05 13:27:49 -0600 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | from distutils.core import setup |
| 4 | setup(name='binman', |
| 5 | version='1.0', |
| 6 | license='GPL-2.0+', |
| 7 | scripts=['binman'], |
Peng Fan | 7e41aba | 2022-06-14 18:42:07 +0800 | [diff] [blame] | 8 | packages=['binman', 'binman.etype', 'binman.btool'], |
Simon Glass | 02c1020 | 2020-08-05 13:27:49 -0600 | [diff] [blame] | 9 | package_dir={'binman': ''}, |
Simon Glass | 6bc4309 | 2021-03-18 20:25:15 +1300 | [diff] [blame] | 10 | package_data={'binman': ['README.rst', 'entries.rst']}, |
Simon Glass | 02c1020 | 2020-08-05 13:27:49 -0600 | [diff] [blame] | 11 | classifiers=['Environment :: Console', |
| 12 | 'Topic :: Software Development :: Embedded Systems']) |