-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 815 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
29
30
31
32
from setuptools import setup, find_packages
setup(
name = 'ruido',
version = '0.0.0a0',
description = 'Scripts for extracting measurements from ambient noise auto- and cross-correlation data',
#long_description =
# url =
author = 'L. Ermert, M. Denolle',
author_email = 'lermert@uw.edu',
# license
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Seismology',
'Programming Language :: Python :: 3',
],
keywords = "Ambient seismic noise seismology Earth Sciences",
packages = find_packages(),
package_data={},
install_requires = [
"numpy",
"scipy",
"pandas",
"h5py",
"pytest",
"mpi4py",
"pyyaml",
"pycwt",
"kneed"],
entry_points = {
},
)