Skip to content

Commit

Permalink
Update setup.py (#17)
Browse files Browse the repository at this point in the history
fixed #16
  • Loading branch information
muhammad-fiaz authored Dec 8, 2023
1 parent a31f8e1 commit c2ebd94
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
Expand Down

0 comments on commit c2ebd94

Please sign in to comment.