forked from LANL-Seismoacoustics/infrapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (66 loc) · 2.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
try:
import setuptools
except ImportError:
pass
import os
import glob
from distutils.core import setup
setup(name = "infrapy",
license='LANL-MIT',
version = '0.3.3',
description = "A tool for processing infrasound and seismic array data.",
keywords=['infrasound', 'geophysics', 'seismic', 'array'],
author = "LANL Seismoacoustics Infrasound (LANL-SA) Team",
packages = ['infrapy',
'infrapy.association',
'infrapy.cli',
'infrapy.database',
'infrapy.database.taskbase',
'infrapy.detection',
'infrapy.location',
'infrapy.performance',
'infrapy.propagation',
'infrapy.utils',
'InfraView',
'InfraView.widgets',
'InfraView.graphics'],
entry_points = {'console_scripts':['infrapy=infrapy.cli.__main__:main'],
'gui_scripts':['infraview = InfraView.__main__:main']},
scripts=['scripts/detection_list.py',
'scripts/plot1_rfk.py',
'scripts/plot_fd.py',
'scripts/plot_network.py',
'scripts/plot_psd_array.py',
'scripts/print_fk.py',
'scripts/print_rfd.py',
'scripts/read_pfd.py',
'scripts/read_pfk.py',
'scripts/update_refsta.py',
'scripts/update_calib.py',
'scripts/read_rassoc_numdet.py',
'scripts/read_rassoc.py',
'scripts/read_rfd_fast.py',
'scripts/read_rlocBISL.py',
'scripts/read_rloc.py',
'scripts/update_calib.py',
'scripts/update_chan.py',
'scripts/update_refsta.py'],
package_dir={'infrapy.propagation' : 'infrapy/propagation'},
package_data={'infrapy.propagation' : ['compass.png',
'ak135_1st_arrivals.dat']},
install_requires = ['numpy',
'scipy',
'obspy',
'pisces',
'scikit-learn',
'pathos',
'numba',
'pyqtgraph',
'pathlib',
'pyproj',
'ipython',
'matplotlib',
'cx_Oracle']
)