-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (27 loc) · 903 Bytes
/
setup.py
File metadata and controls
executable file
·41 lines (27 loc) · 903 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
32
33
34
35
36
37
38
39
40
41
#from setuptools import setup
from distutils.core import setup
module_name = "scdlpicker"
setup(
name='scdlpicker',
version="0.4.0",
description="scdlpicker: A Python package to enable seismic phase picking based on deep-learning in SeisComP",
url='https://github.com/SeisComP/scdlpicker',
author='Joachim Saul, Thomas Bornstein',
author_email='saul@gfz-potsdam.de',
license='AGPLv3',
keywords='SeisComP, SeisBench, ObsPy, seismology, phase picking, deep learning,',
provides=["scdlpicker"],
install_requires=['seisbench', 'obspy'],
python_requires='>=3',
packages=['scdlpicker'],
package_dir={
'scdlpicker': 'lib'
},
scripts=[
"bin/scdlpicker-client.py",
"bin/scdlpicker-repicker.py",
"bin/scdlpicker-relocate-event.py",
"bin/scdlpicker-online-relocator.py",
"bin/scexec"
]
)