From 4b58a00abddb818bc97d68e09bfcb2daf321345a Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 13 Mar 2014 18:32:39 -0400 Subject: [PATCH] Update tox.ini and MANIFEST.in --- MANIFEST.in | 8 ++++++-- tox.ini | 10 +++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9f402fd..61d0c0a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,7 @@ -include CHANGES LICENSE -recursive-include tests *.py +include README.rst +include requirements.txt +include requirements-dev.txt +include tox.ini recursive-include flask_security/templates *.* +recursive-include tests * +recursive-exclude tests/__pycache__ * diff --git a/tox.ini b/tox.ini index 731b8ae..c89e171 100644 --- a/tox.ini +++ b/tox.ini @@ -3,11 +3,7 @@ envlist = py26, py27, py33, pypy [testenv] deps = - nose - simplejson - Flask-SQLAlchemy - Flask-MongoEngine - Flask-Peewee - bcrypt + -r{toxinidir}/requirements-dev.txt -commands = nosetests -xs [] +commands = + python setup.py test