-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
87 lines (80 loc) · 2.29 KB
/
pyproject.toml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "SCCER-SoE" },
{ name = "SED" },
{ name = "ETHZ" },
{ name = "Joseph Doetsch"},
{ name = "Linus Villiger", email = "[email protected]" },
{ name = "Martina Rosskopf", email = "[email protected]" },
{ name = "Virginie Durand"},
{ name = "Anne Obermann"},
{ name = "Lion Krischer"},
{ name = "Thomas Haag" },
{ name = "Sem Demir" },
{ name = "DUGSeis Authors" },
]
name = "DUG-Seis"
version = "0.3"
description = "Processing, data management, and visualization of micro-seismic data."
requires-python = ">=3.11"
license = { text = "LGPL" }
keywords = ["induced seismicity", "seismology"]
classifiers = [
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"click",
"joblib",
"matplotlib",
"numba",
"numpy<2.0",
"obspy",
"pyasdf",
"pyopengl",
"pyproj>=3",
"pyqtgraph==0.13.7",
"pyside6==6.6.1",
"pyyaml",
"schema",
"scipy",
"tqdm",
]
[project.optional-dependencies]
linting = [
"black",
"flake8",
]
docsbuild = [
"sphinx",
"sphinx-book-theme",
"myst-parser",
]
[project.urls]
Homepage = "https://dugseis.readthedocs.io"
Documentation = "https://dugseis.readthedocs.io"
Repository = "https://github.com/swiss-seismological-service/DUGseis"
[project.scripts]
dug-seis = "dug_seis.cmd_line:cli"
[tool.setuptools]
packages = ["dug_seis"]
[tool.black]
exclude = "dug_seis/graphical_interface/ui_files"
[tool.pytest.ini_options]
# Ignore the aurem tests for now.
addopts = '--ignore=dug_seis/event_processing/picking/pickers/aurem/tests/test_aurem.py'
filterwarnings = [
'ignore:.*`np.long` is a deprecated alias for `np.compat.long`*',
'ignore:.*`np.int` is a deprecated alias for the builtin `int`*',
'ignore:.*`np.bool` is a deprecated alias for the builtin `bool`*',
'ignore:.*Using or importing the ABCs from *'
]