From 79df61f674ddb1606c8445ba239eb03a769a4ad4 Mon Sep 17 00:00:00 2001 From: Eric Young Date: Thu, 1 Sep 2022 10:32:36 -0500 Subject: Small developer improvements for Windows-based devs. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 60b0d7a2..bd49221d 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,11 @@ install_requirements = [ # so we'll only install it if we're not in Windows. if platform.system() != "Windows" and not platform.system().startswith("CYGWIN"): install_requirements.append("setproctitle >= 1.1.9") + +# Windows will require the binary psycopg to run pgcli +if platform.system() == "Windows": + install_requirements.append("psycopg-binary >= 3.0.14") + setup( name="pgcli", -- cgit v1.2.3