-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
55 lines (48 loc) · 1.88 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
# -*- 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.4.0.7',
description = "A tool for processing infrasound and seismic array data.",
keywords=['infrasound', 'geophysics', 'seismic', 'array'],
author = "LANL Seismoacoustics Infrasound (LANL-SA) Team",
author_email = '[email protected]',
packages = ['infrapy',
'infrapy.association',
'infrapy.characterization',
'infrapy.cli',
'infrapy.detection',
'infrapy.location',
'infrapy.performance',
'infrapy.propagation',
'infrapy.resources',
'infrapy.resources.travelTimeTables',
'infrapy.utils',
'InfraView',
'InfraView.widgets',
'InfraView.graphics'],
entry_points = {'console_scripts':['infrapy=infrapy.cli.__main__:main'],
'gui_scripts':['infraview = InfraView.__main__:main']},
package_dir={'infrapy.propagation' : 'infrapy/propagation'},
package_data={'infrapy.propagation' : ['compass.png'],
'infrapy.resources' : ['default.config'],
'infrapy.resources.travelTimeTables' : ['ak135_1st_arrivals.dat']},
install_requires = ['numpy',
'scipy',
'obspy',
'pisces',
'scikit-learn',
'pathos',
'numba',
'pyqtgraph',
'pyproj',
'ipython',
'matplotlib',
'cx_Oracle']
)