-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
131 lines (115 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = [
"wheel",
"setuptools >= 61.0.0",
"oldest-supported-numpy",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "qseek"
requires-python = ">=3.10"
license = { text = "GPLv3" }
dynamic = ["version"]
description = "qseek - The earthquake detector."
readme = "README.md"
authors = [
{ name = "Marius Paul Isken", email = "mi@gfz-potsdam.de" },
{ name = "Sebastian Heimann", email = "heimann@uni-potsdam.de" },
{ name = "Marius Kriegerowski", email = "mk@quakesaver.de" },
]
maintainers = [
{ name = "Marius Paul Isken", email = "mi@gfz-potsdam.de" },
{ name = "Sebastian Heimann", email = "heimann@uni-potsdam.de" },
]
keywords = [
"earthquake",
"detection",
"localization",
"stacking-migration",
"beamforming",
]
dependencies = [
"numpy>=1.17.3, <2",
"scipy>=1.8.0",
"pyrocko>=2022.06.10",
"seisbench>=0.5.0",
"pydantic>=2.5.0",
"aiohttp>=3.8",
"aiohttp_cors>=0.7.0",
"typing-extensions>=4.6",
"lru-dict>=1.3",
"rich>=13.4",
"nest_asyncio>=1.5",
"pyevtk>=1.6",
"psutil>=5.9",
"aiofiles>=23.0",
"typer >=0.12.3",
"scikit-fmm >= 2024.05",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Typing :: Typed",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.optional-dependencies]
dev = ["pre-commit>=3.4", "ruff>=0.3.0", "pytest>=7.4", "pytest-asyncio>=0.21"]
docs = [
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.25",
"markdown-exec>=1.9",
]
completion = ["argcomplete>=3.2"]
[project.scripts]
qseek = "qseek.apps.qseek:main"
[tool.setuptools.packages.find]
where = ["src/"]
include = ["qseek"]
[project.urls]
Home = "https://pyrocko.org"
GitHub = "https://github.com/pyrocko/qseek"
Issues = "https://github.com/pyrocko/qseek/issues"
[tool.setuptools_scm]
[tool.ruff.lint]
extend-select = [
'W',
'N',
'DTZ',
'FA',
'G',
'RET',
'SIM',
'B',
'RET',
'C4',
'I',
'RUF',
'T20',
'D',
]
ignore = [
"RUF012",
"RUF009",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
]
[tool.ruff]
target-version = 'py311'
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
markers = ["plot: plot figures in tests"]
[tool.cibuildwheel.macos]
before-build = "brew install libomp"