From 62411b90079d3b334a34604840939892907f56a3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 5 Nov 2010 07:44:17 -0400 Subject: [PATCH] Add pysawsim.test submodule (currently empty). --- pysawsim/test/__init__.py | 21 +++++++++++++++++++++ setup.py | 3 ++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 pysawsim/test/__init__.py diff --git a/pysawsim/test/__init__.py b/pysawsim/test/__init__.py new file mode 100644 index 0000000..b32f0b0 --- /dev/null +++ b/pysawsim/test/__init__.py @@ -0,0 +1,21 @@ +# Copyright (C) 2010 W. Trevor King +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# The author may be contacted at on the Internet, or +# write to Trevor King, Drexel University, Physics Dept., 3141 Chestnut St., +# Philadelphia PA 19104, USA. + +"""Ensure sawsim reproduces theoretically solved distributions. +""" diff --git a/setup.py b/setup.py index 9fd03bb..6b164ab 100755 --- a/setup.py +++ b/setup.py @@ -17,6 +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, ) -- 2.26.2