From 9447214e6bd58376bf12c29b1d9e929a0f827d60 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Mon, 23 Apr 2012 18:27:47 -0700 Subject: Fixed an issue whereby setup.py was not importable when running tox. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6051fba..ee42dfe 100644 --- a/setup.py +++ b/setup.py @@ -120,9 +120,6 @@ if sys.argv[-1] == 'publish': publish() sys.exit() -long_description = make_long_description() -template_files = ['*.mustache', '*.txt'] - # We follow the guidance here for compatibility with using setuptools instead # of Distribute under Python 2 (on the subject of new, unrecognized keyword # arguments to setup()): @@ -169,6 +166,9 @@ PACKAGES = [ def main(sys_argv): + long_description = make_long_description() + template_files = ['*.mustache', '*.txt'] + setup(name='pystache', version=VERSION, license='MIT', -- cgit v1.2.1