summaryrefslogtreecommitdiff
path: root/tools/patman/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/patman/setup.py')
-rw-r--r--tools/patman/setup.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/patman/setup.py b/tools/patman/setup.py
new file mode 100644
index 00000000000..bcaad69a1c2
--- /dev/null
+++ b/tools/patman/setup.py
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+from setuptools import setup
+setup(name='patman',
+ version='1.0',
+ scripts=['patman'],
+ packages=['patman'],
+ package_dir={'patman': ''},
+ package_data={'patman': ['README.rst']},
+ classifiers=['Environment :: Console',
+ 'Topic :: Software Development'])