-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
81 lines (70 loc) · 1.91 KB
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
[build-system]
requires = [
"setuptools>=42,<82",
"wheel",
"cython",
"numpy<2",
]
build-backend = "setuptools.build_meta"
[project]
name = "mtuq"
version = "0.2.0"
description = "moment tensor (mt) uncertainty quantification (uq)"
authors = [
{ name = "Ryan Modrak" }
]
requires-python = ">=3,<3.14"
keywords = ["seismology"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy<2",
"scipy",
"obspy",
"instaseis",
"pandas",
"xarray",
"netCDF4",
"h5py",
"tables",
"retry",
"flake8",
"nose",
"pytest",
"cython",
"setuptools",
"seisgen",
"seisclient",
]
[project.entry-points."readers"]
SAC = "mtuq.io.readers.SAC:read"
[project.entry-points."greens_tensor_clients"]
AXISEM = "mtuq.io.clients.AxiSEM_NetCDF:Client"
AXISEM_NETCDF = "mtuq.io.clients.AxiSEM_NetCDF:Client"
FK = "mtuq.io.clients.FK_SAC:Client"
FK_SAC = "mtuq.io.clients.FK_SAC:Client"
CPS = "mtuq.io.clients.CPS_SAC:Client"
CPS_SAC = "mtuq.io.clients.CPS_SAC:Client"
SPECFEM3D = "mtuq.io.clients.SPECFEM3D_SAC:Client"
SPECFEM3D_GLOBE = "mtuq.io.clients.SPECFEM3D_SAC:Client"
SPECFEM3D_SAC = "mtuq.io.clients.SPECFEM3D_SAC:Client"
SPECFEM3D_SGT = "mtuq.io.clients.SPECFEM3D_SGT:Client"
SPECFEM3D_PKL = "mtuq.io.clients.SPECFEM3D_SGT:Client"
SEISCLOUD = "mtuq.io.clients.seiscloud:Client"
SYNGINE = "mtuq.io.clients.syngine:Client"
[tool.setuptools]
packages = ["mtuq"]
#[tool.setuptools.package-data]
#"mtuq" = ["data/examples/*.tgz", "data/tests/*.tgz"]
##Cython support remains experimental?
#[tool.setuptools.extension]
# "mtuq.some_module" = { sources = ["mtuq/some_module.pyx"], extra_compile_args = [...] }