-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
40 lines (38 loc) · 1.39 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
from setuptools import setup
INSTALL_REQUIRES = [
'numpy',
'scipy',
'matplotlib>=2.0.0',
'obspy>=1.3.0']
setup(
name="seedlink-plotter",
version="0.2.1",
description="Plot data acquired in realtime in from a seedlink server.",
author="Sebastien Bonaime, Lion Krischer, Tobias Megies",
author_email="bonaime@ipgp.fr",
url="https://github.com/bonaime/seedlink_plotter",
download_url="https://github.com/bonaime/seedlink_plotter.git",
install_requires=INSTALL_REQUIRES,
python_requires='>3.7.0',
keywords=["Seedlink", "ObsPy", "Seismology", "Plotting", "Realtime"],
packages=["seedlink_plotter"],
package_data={'seedlink_plotter': ['favicon.gif']},
entry_points={
'console_scripts':
['seedlink-plotter = seedlink_plotter.seedlink_plotter:main'],
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or " +
"Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description="""\
Seedlink-plotter is a tool to plot seismological waveform data acquired from a
Seedlink server. The plots are continuously updated as recent data is acquired
in realtime.
"""
)