From 695a49b3e8121c07062f6a0d1be900f1bff5b946 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 15 Feb 2021 22:49:57 -0500 Subject: [PATCH] Add stub setup.py This allows one to use commands such as "python3 setup.py install". --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..6819ec0fd --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +#!/usr/bin/python3 + +import setuptools + +if __name__ == "__main__": + setuptools.setup()