Skip to content

Commit

Permalink
v0.28 build failure with Homebrew #167 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
okigan authored May 5, 2023
1 parent c65cc8b commit 99fabf4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from setuptools import setup


with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
# https://github.com/okigan/awscurl/issues/167
# with open("requirements.txt", "r", encoding="utf-8") as f:
# requirements = f.read().splitlines()

# https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary

Expand All @@ -26,7 +26,12 @@
],
},
zip_safe=False,
install_requires=requirements,
install_requires=[
'requests',
'configargparse',
'configparser',
'urllib3[secure]'
],
extras_require={
'awslibs': ["botocore"]
}
Expand Down

0 comments on commit 99fabf4

Please sign in to comment.