Skip to content

Commit

Permalink
Revert dynamic requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Aug 26, 2024
1 parent 8c5d72d commit 7b918a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ rich~=13.7.1
GitPython~=3.1.43
PyYAML>=6.0.2
argcomplete~=3.5.0
tzlocal~=5.2
tzlocal~=5.2; platform_system != 'Linux'
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
for k, v in data_files_dict.items():
data_files.append((k, v))

with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = [x.strip() for x in f.readlines()]

setup(
name='Exegol',
version=__version__,
Expand All @@ -57,7 +54,15 @@
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=requirements,
install_requires=[
'docker~=7.1.0',
'requests~=2.32.3',
'rich~=13.7.1',
'GitPython~=3.1.43',
'PyYAML>=6.0.2',
'argcomplete~=3.5.0',
'tzlocal~=5.2; platform_system != "Linux"'
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
data_files=data_files,
Expand Down

0 comments on commit 7b918a4

Please sign in to comment.