From a009471af8b5e6ac79cf808f47c2d79160653934 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 28 Apr 2022 16:31:39 +0200 Subject: [PATCH] Add setup.py. Allow for editable installation (at least with some combination of packages because locally I can install it fine without it). --- setup.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6068493 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup() -- GitLab