-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (45 loc) · 1.65 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
from setuptools import setup, find_packages
import os
import sys
import inspect
SETUP_DIRECTORY = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
UTIL_PATH = os.path.join(SETUP_DIRECTORY, "msnoise_db")
sys.path.insert(0, UTIL_PATH)
if UTIL_PATH: # To avoid PEP8 E402
from _version import get_git_version # @UnresolvedImport
sys.path.pop(0)
setup(version=get_git_version(),
name='msnoise_db',
packages=find_packages(),
include_package_data=True,
install_requires=[
'click'
],
extras_require={ },
entry_points='''
[console_scripts]
msnoisedb=msnoise_db.cli:run
''',
author="Thomas Lecocq & MSNoise dev team",
author_email="Thomas.Lecocq@seismology.be",
description="The database module for MSNoise",
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 :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
)