-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (23 loc) · 871 Bytes
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = "infraga",
license='LANL-MIT',
version = '1.0.3',
description = "A tool for modeling the propagation of infrasound in the limit of geometric acoustics (Python interface).",
keywords=['infrasound', 'geophysics', 'seismic', 'array'],
author = "LANL Seismoacoustics Infrasound (LANL-SA) Team",
author_email = 'pblom@lanl.gov',
packages = ['infraga'],
entry_points = {'console_scripts':['infraga=infraga.__main__:main']},
install_requires = ['cartopy',
'click',
'netCDF4',
'numpy',
'matplotlib',
'pyproj',
'scipy',
'ipython',
'pip',
'wget']
)