forked from ROBelgium/MSNoise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (60 loc) · 1.91 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
56
57
58
59
60
61
from setuptools import setup, find_packages
setup(version="1.6",
name='msnoise',
packages=find_packages(),
include_package_data=True,
install_requires=[
'setuptools',
'numpy>=1.0',
'scipy',
'pandas',
'matplotlib',
'sqlalchemy',
'obspy',
'click',
'pymysql',
'flask',
'flask-admin',
'flask-wtf',
'markdown',
'folium',
'wtforms',
'jinja2',
'scandir', # useful for python < 3.5
'logbook'
],
extras_require={
'doc': [
'sphinx>=1.6.1',
'sphinx_bootstrap_theme>=0.5.0',
'numpydoc',
],
},
entry_points='''
[console_scripts]
msnoise=msnoise.scripts.msnoise:run
''',
author="Thomas Lecocq & MSNoise dev team",
author_email="[email protected]",
description="A Python Package for Monitoring Seismic Velocity Changes"
" using Ambient Seismic Noise",
license="EUPL-1.1",
url="http://www.msnoise.org",
keywords="noise monitoring seismic velocity change dvv dtt doublet"
" stretching cross-correlation acoustics seismology",
zip_safe=False,
platforms='OS Independent',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
)