forked from usgs/ps2ff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 689 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (16 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
import os.path
setup(name='ps2ff',
version=1.1,
description='Approximated rupture distances from point source',
author='Eric Thompson, Bruce Worden',
author_email='emthompson@usgs.gov, cbworden@usgs.gov',
url='http://github.com/usgs/shakelib',
packages=['ps2ff'],
package_data={'ps2ff': [os.path.join('tables', '*'),
os.path.join('config', '*'),
os.path.join('data', '*')]},
scripts=[os.path.join('bin', 'run_ps2ff'),
os.path.join('bin', 'run_ps2ff_single_event'),
os.path.join('bin', 'Cy14HwMeanVar.py')],
)