From c2ebd94122134b76244131ca6441c594b135ae98 Mon Sep 17 00:00:00 2001 From: Muhammad Fiaz Date: Fri, 8 Dec 2023 21:33:09 +0530 Subject: [PATCH] Update setup.py (#17) fixed #16 --- setup.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index be6ab18..305b236 100644 --- a/setup.py +++ b/setup.py @@ -11,9 +11,6 @@ with open("README.md", "r", encoding="utf-8") as fh: LONG_DESCRIPTION = fh.read() -with open("requirements.txt", "r", encoding="utf-8") as req_file: - INSTALL_REQUIRES = req_file.read().splitlines() - setup( name="checkversions", version=VERSION, @@ -38,7 +35,14 @@ "Operating System :: Microsoft :: Windows", ], python_requires='>=3.8', - install_requires=INSTALL_REQUIRES, + install_requires=[ + pip==23.3.1, +setuptools==69.0.2, +pytest==7.4.3, +dotsetup~=0.0.2, +packaging~=23.2 + + ], setup_requires=['pytest-runner'], tests_require=['pytest'], license='MIT License',