From 02bfd7133e0da99dc6a324e195535a7cbe06a9a7 Mon Sep 17 00:00:00 2001 From: PXHuang <72572804+PinxuanHuang@users.noreply.github.com> Date: Fri, 28 Jul 2023 19:52:04 +0800 Subject: [PATCH] Update setup.py Fixing the bug for cloning the code repository and installing with the `pip install .` command. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 470c45e..cbabc35 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ install_requires=[ "click", "jinja2", - "pefile>=2019.4.18, <2019.5.0" + "pefile>=2019.4.18, <2019.5.0", "pyyaml>=5.1", "sqlalchemy>=1.4, <1.5", "alembic>=1.7.4, <1.8",