forked from chengxinjiang/NoisePy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.05 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
from setuptools import setup, find_packages
setup(version="1.0",
name='src',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'scipy',
'numba',
'obspy',
'pandas',
'pyasdf',
'python>=3.0',
'mpi4py',
'markdown',
],
author="Chengxin Jiang & Marine Denolle",
author_email="chengxin_jiang@fas.harvard.edu & mdenolle@fas.harvard.edu",
description="A High-performance Computing Python Package for Ambient Noise Analysis",
license="MIT license",
url="https://github.com/mdenolle/NoisePy",
keywords="ambient noise, cross-correlation, seismic monitoring, velocity change "
" surface wave dispersion",
platforms='OS Independent',
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
)