]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - tools/patman/setup.py
patman: add distutils based installer
[karo-tx-uboot.git] / tools / patman / setup.py
diff --git a/tools/patman/setup.py b/tools/patman/setup.py
new file mode 100644 (file)
index 0000000..e61804f
--- /dev/null
@@ -0,0 +1,13 @@
+#
+# SPDX-License-Identifier:      GPL-2.0+
+#
+from distutils.core import setup
+setup(name='patman',
+      version='1.0',
+      license='GPL-2.0+',
+      scripts=['patman'],
+      packages=['patman'],
+      package_dir={'patman': ''},
+      package_data={'patman': ['README']},
+      classifiers=['Environment :: Console',
+                   'Topic :: Software Development'])