Skip to content

Commit 647c132

Browse files
author
Jim Robinson
committed
Fix requirements issue
1 parent 543711b commit 647c132

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33

44
VERSION = os.getenv("SEMVER", os.getenv("GitVersion_FullSemVer", "dev"))
55

6-
with open(os.path.join(os.getcwd(), "requirements.txt")) as f:
7-
required = f.read().splitlines()
8-
96

107
def get_long_description():
118
with open(
@@ -34,7 +31,16 @@ def get_long_description():
3431
[console_scripts]
3532
croudtech-ecs-tools=croudtech_ecs_tools.cli:cli
3633
""",
37-
install_requires=required,
34+
install_requires=[
35+
"boto3==1.20.28",
36+
"botocore==1.23.28; python_version >= '3.6'",
37+
"click==8.0.3",
38+
"jmespath==0.10.0; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'",
39+
"python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
40+
"s3transfer==0.5.0; python_version >= '3.6'",
41+
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
42+
"urllib3==1.26.7; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
43+
],
3844
extras_require={
3945
"test": ["pytest"]
4046
},

0 commit comments

Comments
 (0)