Change requirements in setup.py: allauth is only required for tests

This commit is contained in:
Maxim Kukhtenkov 2017-03-20 19:26:44 -07:00
parent dd3eb3e8c6
commit 8c58782e30

View File

@ -31,13 +31,13 @@ setup(
'Django>=1.8.0', 'Django>=1.8.0',
'djangorestframework>=3.1.0', 'djangorestframework>=3.1.0',
'six>=1.9.0', 'six>=1.9.0',
'django-allauth>=0.25.0',
], ],
extras_require={ extras_require={
'with_social': ['django-allauth>=0.25.0'], 'with_social': ['django-allauth>=0.25.0'],
}, },
tests_require=[ tests_require=[
'responses>=0.5.0', 'responses>=0.5.0',
'django-allauth>=0.25.0',
'djangorestframework-jwt>=1.9.0', 'djangorestframework-jwt>=1.9.0',
], ],
test_suite='runtests.runtests', test_suite='runtests.runtests',