[pkg] Fix extra packages not installable 3.24
authorFlorent Cayré <florent.cayre@gmail.com>
Sun, 06 Nov 2016 16:35:57 +0100
branch3.24
changeset 11805 7436b65a44bc
parent 11804 98061b2b7cf1
child 11806 5fdc92be3ba7
[pkg] Fix extra packages not installable For instance `pip install -e ".[pyramid]"` should install the pyramid dependencies. A typo caused all these extra packages to not be found by pip. Closes #16121322.
setup.py
--- a/setup.py	Fri Nov 04 16:45:54 2016 +0100
+++ b/setup.py	Sun Nov 06 16:35:57 2016 +0100
@@ -228,7 +228,7 @@
         'Markdown',
         'unittest2 >= 0.7.0',
     ],
-    extra_requires={
+    extras_require={
         'captcha': [
             'Pillow',
         ],