From cb28af838e63dfb38761b9f593365ec57e291978 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Tue, 14 Jun 2022 18:15:12 +0530 Subject: [PATCH] fix: Add temporary backwards compatible setup.py setup.py is maintained so that there is no hard dependency on bench v5.11.0 and people get enough time to update their CLI. Hope the TODO adds a subtle reminder for the future ;) --- 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 0000000000..7a90eed81a --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +# TODO: Remove this file when bench >=v5.11.0 is adopted / v15.0.0 is released +from setuptools import setup + +name = "frappe" + +setup()