-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
114 lines (105 loc) · 2.64 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
[project]
name = "gmprocess"
dynamic = ["version"]
description = "USGS Automated Ground Motion Processing Software"
authors = [
{name = "Eric Thompson", email="[email protected]"},
{name = "Mike Hearne", email="[email protected]"},
{name = "Brad Aagaard", email="[email protected]"},
{name = "Bruce Worden", email="[email protected]"},
{name = "John Rekoske", email="[email protected]"},
{name = "Heather Hunsinger", email="[email protected]"},
{name = "Gabe Ferragut", email="[email protected]"},
]
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.9"
# Requirements:
dependencies = [
"beautifulsoup4>=4.11.0",
"configobj>=5.0.6",
"esi-core>=1.0.1",
"esi-utils-colors>1.0",
"esi-utils-io>1.0",
"esi-utils-rupture>1.0,<=1.0.4",
"folium>=0.12",
"gmpacket>=0.1.6",
"h5py>=3.11",
"lxml>=4.6.1",
"matplotlib>=3.1.0",
"numba>=0.58",
"numpy>=1.21,<2.0",
"obspy>=1.4.1",
"openpyxl>=3.0.8",
"openquake.engine>=3.18",
"pandas>=1.0",
"ps2ff>=1.5.2",
"pyasdf>=0.7",
"pydantic>=2.0",
"requests>=2.29",
"ruamel.yaml>=0.17.16",
"schema>=0.7",
"scipy>=1.7",
"setuptools-scm>=6.3.2",
"statsmodels>=0.12.2",
"usgs-strec>=2.3.2",
"xlrd>=2.0",
]
[project.optional-dependencies]
dev = [
"build>=0.7.0",
"black>=21",
"esi-releases>=0.1",
"flake8>=3.9",
"ipython>=7.26",
"pylint>=2.17",
]
test = [
"pytest>=6.2",
"pytest-cov>=2.12",
"pytest-console-scripts>=1.4",
"vcrpy>=4.1",
]
doc = [
"altair>=4.2.2",
"furo>=2023.3.27",
"myst-nb>=0.17.2",
"myst-parser>=0.18.1",
"nbsphinx>=0.9.1",
"recommonmark>=0.7.1",
"sphinx>5.0.0",
"sphinx-autoapi<3.0.0",
"sphinx-copybutton>=0.5.2",
"sphinx-inline-tabs>=2023.4.21",
"sphinxcontrib-programoutput>=0.17",
]
build = [
"build",
"twine",
"check-wheel-contents",
]
[project.scripts]
gmconvert = "gmprocess.bin.gmconvert:main"
gminfo = "gmprocess.bin.gminfo:cli"
gmrecords = "gmprocess.bin.gmrecords:main"
gmworkspace = "gmprocess.bin.gmworkspace:main"
gmprocess_config = "gmprocess.bin.gmprocess_config:main"
list_metrics = "gmprocess.bin.list_metrics:main"
cwa_gather = "gmprocess.bin.cwa_gather:cli"
fix_inventory = "gmprocess.bin.fix_inventory:main"
fetch_orfeus = "gmprocess.bin.fetch_orfeus:cli"
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=3.4",
"numpy",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["gmprocess*"]
exclude = ["tests*"]
[tool.setuptools_scm]