0f1361a75ce8cc39619b9e17c55df7ccaf0b8a85
[sawsim.git] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 from os import listdir
5 import os.path
6
7 from pysawsim import __version__
8
9
10 SCRIPT_DIR = 'bin'
11 scripts = [os.path.join(SCRIPT_DIR, s) for s in listdir(SCRIPT_DIR)
12            if s.endswith('.py')]
13
14 setup(
15     name='pysawsim',
16     version=__version__,
17     description='Python framework for the sawsim force spectroscopy simulator.',
18     url='http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/sawsim/',
19     packages=['pysawsim',
20               'pysawsim.manager',
21               'pysawsim.test'],
22     scripts=scripts,
23     )