-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move dependencies and optional-dependencies into
pyproject.toml
- Loading branch information
1 parent
f7f87e7
commit bd8e300
Showing
5 changed files
with
56 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,3 @@ | ||
from setuptools import setup | ||
|
||
# NOTE: If updating requirements make sure to also check Pipfile for any locks | ||
# NOTE: When updating botocore make sure to update awscli/boto3 versions below | ||
install_requires = [ | ||
# pegged to also match items in `extras_require` | ||
'botocore>=1.34.70,<1.34.163', | ||
'aiohttp>=3.9.2,<4.0.0', | ||
'wrapt>=1.10.10, <2.0.0', | ||
'aioitertools>=0.5.1,<1.0.0', | ||
] | ||
|
||
extras_require = { | ||
'awscli': ['awscli>=1.32.70,<1.33.45'], | ||
'boto3': ['boto3>=1.34.70,<1.34.163'], | ||
} | ||
|
||
|
||
setup( | ||
install_requires=install_requires, | ||
extras_require=extras_require, | ||
) | ||
setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters