From 712d90987a674a77fe8eb8575ca2b3f0526ce3ce Mon Sep 17 00:00:00 2001 From: Gerard Weatherby Date: Tue, 1 Jun 2021 12:19:26 -0400 Subject: [PATCH] Allow pip install -e . to work --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..03ad010b --- /dev/null +++ b/setup.py @@ -0,0 +1,5 @@ +# this is necessary to allow +# pip install -e . +# to work +from setuptools import setup +setup()