-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (20 loc) · 882 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (20 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
import os.path
STRECFOLDER = os.path.join(os.path.expanduser('~'), '.strec')
DATAFOLDER = os.path.join(os.path.expanduser('~'), '.strec', 'data')
setup(name='STREC',
version='0.2',
description='SeismoTectonic Regime Earthquake Calculator',
author='Mike Hearne, Daniel Garcia',
author_email='mhearne@usgs.gov, emthompson@usgs.gov, cbworden@usgs.gov',
url='https://github.com/usgs/strec/',
packages=['strec'],
scripts=['bin/subselect'],
package_data={'strec': ['data/*.csv', 'data/*.txt',
'data/*.ini', 'data/*.json',
'data/*.geojson', 'data/*.grd',
'data/*.db', 'data/*.xlsx',
'data/slabs/*.csv',
'data/slabs/*.grd']},
)