From: W. Trevor King Date: Fri, 31 Dec 2010 18:39:12 +0000 (-0500) Subject: Fix typo in setup.py which produced a 'pysawsim/managerpysawsim/test' error. X-Git-Url: http://git.tremily.us/?p=sawsim.git;a=commitdiff_plain;h=ac696625416fa70acd300609ad6be53d5e8f5e1b Fix typo in setup.py which produced a 'pysawsim/managerpysawsim/test' error. --- diff --git a/setup.py b/setup.py index 6b164ab..0f1361a 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( description='Python framework for the sawsim force spectroscopy simulator.', url='http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/sawsim/', packages=['pysawsim', - 'pysawsim.manager' + 'pysawsim.manager', 'pysawsim.test'], scripts=scripts, )