From: Kartheek Lenkala Date: Sun, 22 Mar 2015 10:50:41 +0000 (+0530) Subject: Adding pytest references and dependencies in setup.py and Makefile X-Git-Tag: 2.8~27^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01b047c416fc3d1e1d0e063777ccc34d8589d01d;p=thirdparty%2Fjinja.git Adding pytest references and dependencies in setup.py and Makefile --- diff --git a/Makefile b/Makefile index 31945ce1..8adbf042 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ test: - python run-tests.py + py.test jinja2 develop: pip install --editable . diff --git a/setup.py b/setup.py index 2cf3106f..7b3b7b6f 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,10 @@ setup( 'Topic :: Text Processing :: Markup :: HTML' ], packages=['jinja2'], - install_requires=['MarkupSafe'], + install_requires=[ + 'MarkupSafe', + 'pytest' + ], extras_require={'i18n': ['Babel>=0.8']}, include_package_data=True, entry_points="""