From 930b433abe60dd1d880f98f8cd5997fd4c47f1f1 Mon Sep 17 00:00:00 2001 From: iamatulsingh Date: Mon, 28 Oct 2024 15:39:20 +0100 Subject: [PATCH] fix: single req file for all --- requirements-dev.txt | 7 ------- requirements.txt | 4 +++- setup.py | 2 +- 3 files changed, 4 insertions(+), 9 deletions(-) delete mode 100644 requirements-dev.txt diff --git a/requirements-dev.txt b/requirements-dev.txt deleted file mode 100644 index b33b4af..0000000 --- a/requirements-dev.txt +++ /dev/null @@ -1,7 +0,0 @@ -pytest==7.2.0 -setuptools -requests~=2.32.2 -beautifulsoup4==4.11.1 -pydotmap~=0.1.3 -opencv-python~=4.9.0.80 -numpy~=1.24.2 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 9deb902..b33b4af 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,7 @@ +pytest==7.2.0 +setuptools requests~=2.32.2 beautifulsoup4==4.11.1 pydotmap~=0.1.3 opencv-python~=4.9.0.80 -numpy~=1.24.2 +numpy~=1.24.2 \ No newline at end of file diff --git a/setup.py b/setup.py index 0ab5663..2334857 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() -with open("requirements-dev.txt", "r") as req: +with open("requirements.txt", "r") as req: reqs = req.read().split("\n") setuptools.setup(