move django-allauth and responses from setup.py to test_requirements.pip

This commit is contained in:
Mateusz Sikora 2014-10-09 11:51:33 +02:00
parent 989f3fa7af
commit 4c9abe8043
3 changed files with 4 additions and 3 deletions

View File

@ -17,3 +17,4 @@ script:
- coverage run --source=rest_auth setup.py test
after_success:
- coveralls
install: "pip install -r test_requirements.pip"

View File

@ -11,7 +11,7 @@ except ImportError:
import os
here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.md'))
f = open(os.path.join(here, 'README.md'))
long_description = f.read().strip()
f.close()
@ -29,9 +29,7 @@ setup(
zip_safe=False,
install_requires=[
'Django>=1.5.0',
'django-allauth>=0.18.0',
'djangorestframework>=2.3.13',
'responses>=0.2.2'
],
test_suite='rest_auth.runtests.runtests',
include_package_data=True,

2
test_requirements.pip Normal file
View File

@ -0,0 +1,2 @@
django-allauth>=0.18.0
responses>=0.2.2