Add boto dependency for the S3 plugin.

This commit is contained in:
Simon Conseil
2014-11-09 00:03:41 +01:00
parent e2cfbb08f1
commit e676d35a4d
2 changed files with 5 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
blinker
boto
click
cssmin
Jinja2

View File

@@ -32,7 +32,10 @@ setup(
install_requires=['blinker', 'click', 'jinja2', 'Markdown', 'Pillow',
'pilkit'],
test_requires=['pytest'],
extras_require={'CSS': ['cssmin']},
extras_require={
'CSS': ['cssmin'],
'S3': ['boto']
},
entry_points={
'console_scripts': ['sigal = sigal:main']
},