#!/usr/bin/env python
+"Python framework for the sawsim force spectroscopy simulator."
+
from distutils.core import setup
from os import listdir
import os.path
scripts = [os.path.join(SCRIPT_DIR, s) for s in listdir(SCRIPT_DIR)
if s.endswith('.py')]
+_this_dir = os.path.dirname(__file__)
+
setup(
name='pysawsim',
version=__version__,
author='W. Trevor King',
author_email='wking@drexel.edu',
- description='Python framework for the sawsim force spectroscopy simulator.',
+ description=__doc__,
+ long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
url='http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/sawsim/',
packages=['pysawsim',
'pysawsim.manager',