diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -43,8 +43,6 @@ install_requires = [ # WTForms removed the "ext" module in 3.0. 'wtforms>2.1,<3.0', 'py-bcrypt', - 'pytest>=2.3.1', - 'pytest-xdist', 'werkzeug>=0.7', # Celery 4.3.0 drops the "sqlite" transport alias making our tests fail. 'celery>=3.0,<4.3.0', @@ -80,6 +78,11 @@ install_requires = [ # 'Pillow', ] +extras_require = [ + 'pytest>=2.3.1', + 'pytest-xdist', +] + with open(READMEFILE, encoding="utf-8") as fobj: long_description = fobj.read() |