Skip to content

Commit

Permalink
update requiremetns
Browse files Browse the repository at this point in the history
  • Loading branch information
valdergallo committed Dec 11, 2015
1 parent f57fb72 commit c2c8fe1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ django-debug-toolbar
docutils
ipdb
ipython
nose
openpyxl
wsgiref
xlrd
South
mock
tox
coverage
pytest
pytest-django
pytest-cov
pytest-xdist
2 changes: 1 addition & 1 deletion example/requirements-tox.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
docutils
nose
openpyxl
xlrd
South
mock
pytest
pytest-django
pytest-cov
pytest-xdist
2 changes: 1 addition & 1 deletion example/requirements-travis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ openpyxl==2.1.1
xlrd==0.9.3
South
coverage
nose
coveralls
mock
pytest
pytest-cov==2.2.0
pytest-django==2.9.1
pytest-xdist==1.13.1
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ def readme():
'xlrd>=0.9.3',
]

tests_require = [
'pytest',
'pytest-django',
'pytest-cov',
]


setup(
name='data-importer',
Expand All @@ -34,6 +40,7 @@ def readme():
description='Simple library to easily import data with Django',
license='BSD',
long_description=readme(),
tests_require=tests_require,
classifiers=[
'Framework :: Django',
'Operating System :: OS Independent',
Expand Down

0 comments on commit c2c8fe1

Please sign in to comment.