From 01b047c416fc3d1e1d0e063777ccc34d8589d01d Mon Sep 17 00:00:00 2001 From: Kartheek Lenkala Date: Sun, 22 Mar 2015 16:20:41 +0530 Subject: [PATCH] Adding pytest references and dependencies in setup.py and Makefile --- Makefile | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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=""" -- 2.47.2