Add author information to setup.py.
[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     author='W. Trevor King',
18     author_email='wking@drexel.edu',
19     description='Python framework for the sawsim force spectroscopy simulator.',
20     url='http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/sawsim/',
21     packages=['pysawsim',
22               'pysawsim.manager',
23               'pysawsim.test'],
24     scripts=scripts,
25     )