-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 953 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "seisflows"
version = "3.5.6"
description = "An automated workflow tool for full waveform inversion"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "adjTomo Dev Team"},
{email = "adjtomo@gmail.com"}
]
dependencies = [
"numpy<2.0.0", # requires PyASDF update
"obspy",
"pyyaml",
"pypdf",
"IPython",
"dill",
"pyatoa>=0.4.2",
"pysep-adjtomo",
]
[project.optional-dependencies]
dev = [
"pytest",
"pyatoa @ git+https://github.com/adjtomo/pyatoa.git@devel",
"pysep-adjtomo @ git+https://github.com/adjtomo/pysep.git@devel"
]
[project.urls]
homepage = "https://github.com/adjtomo/"
documentation = "https://seisflows.readthedocs.io"
repository = "https://github.com/adjtomo/seisflows"
[project.scripts]
seisflows = "seisflows.seisflows:main"