-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make boto3 dependency optional (#30)
* Add boto3 to local requirements * Add optional feature "aws" that depends on boto3 * Raise runtime error if boto3 is not installed * Add instructions to install optional aws feature * Test runtime error when boto3 is missing * Rename fixture * Add instructions to install aws feature
- Loading branch information
Showing
5 changed files
with
35 additions
and
4 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,7 +1,8 @@ | ||
boto3 | ||
coveralls | ||
pytest | ||
pytest-cov | ||
pytest-runner | ||
Sphinx | ||
sphinx-rtd-theme | ||
twine | ||
coveralls |
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ def run(self): | |
author="Osvaldo Santana Neto", author_email="[email protected]", | ||
license="MIT", | ||
packages=['prettyconf'], | ||
install_requires=['boto3'], | ||
extras_require={'aws': ['boto3']}, | ||
platforms='any', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|
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