Skip to content

Commit

Permalink
Add dependencies for S3 and Azure file-admins
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Sep 11, 2018
1 parent dea86a3 commit 3f31b17
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ def grep(attrname):
return strval


extras_require = {
'aws': ['boto'],
'azure': ['azure-storage-blob']
}


install_requires = [
'Flask>=0.7',
'wtforms'
Expand All @@ -49,6 +55,7 @@ def grep(attrname):
include_package_data=True,
zip_safe=False,
platforms='any',
extras_require=extras_require,
install_requires=install_requires,
tests_require=[
'nose>=1.0',
Expand Down

0 comments on commit 3f31b17

Please sign in to comment.