forked from NoiseCIEI/ThreeStation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 720 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 720 Bytes
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
from setuptools import setup, find_packages
setup(
name='ThreeStation',
version='0.0.1',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'bottleneck',
'matplotlib',
'numpy',
'obspy',
'pandas',
'pyyaml',
'setuptools',
'tqdm',
'pymodule',
],
author='Shane Zhang',
author_email='shzh3924@colorado.edu',
description='Three-station interferometry',
license='MIT',
url='https://github.com/shane-d-zhang/ThreeStation',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)