forked from usgs/shakemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (84 loc) · 2.79 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
[project]
name = "shakemap"
dynamic = ["version"]
description = "USGS Near-Real-Time Ground Motion Mapping"
authors = [
{name = "Bruce Worden", email = "[email protected]"},
{name = "Mike Hearne", email = "[email protected]"},
{name = "Eric Thompson", email = "[email protected]"},
]
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"shakemap-modules[all]>=1.0.25",
"esi-utils-comcat>=0.0.2",
"python-daemon>=3.0",
"lockfile>=0.12.2",
"importlib_resources",
]
[project.optional-dependencies]
dev = [
"build>=0.7.0",
"black>=21",
"flake8>=3.9",
"ipython>=8.13.2",
]
test = [
"pytest>=7.3.1",
"pytest-azurepipelines>=1.0.4",
"pytest-cov>=4.1.0",
"pytest-faulthandler>=2.0.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>=2.1.0",
"sphinx-copybutton>=0.5.2",
"sphinx-inline-tabs>=2023.4.21",
"sphinxcontrib-programoutput>=0.17",
]
build = [
"build",
"twine",
"check-wheel-contents",
]
[project.scripts]
associate_amps = "shakemap.bin.associate_amps:main"
getdyfi = "shakemap.bin.getdyfi:main"
receive_amps = "shakemap.bin.receive_amps:main"
receive_origins = "shakemap.bin.receive_origins:main"
receive_origins_gsm = "shakemap.bin.receive_origins_gsm:main"
run_verification = "shakemap.bin.run_verification:main"
shake = "shakemap.bin.shake:main"
sm_check = "shakemap.bin.sm_check:main"
sm_compare = "shakemap.bin.sm_compare:main"
sm_create = "shakemap.bin.sm_create:main"
sm_migrate = "shakemap.bin.sm_migrate:main"
sm_profile = "shakemap.bin.sm_profile:main"
sm_queue = "shakemap.bin.sm_queue:main"
sm_rupture = "shakemap.bin.sm_rupture:main"
sm_batch = "shakemap.bin.sm_batch:main"
sm_sync = "shakemap.bin.sm_sync:main"
fix_netcdf = "shakemap.bin.fix_netcdf:main"
se_stations = "shakemap.bin.se_stations:main"
[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 = ["shakemap*"]
exclude = ["tests*"]
[tool.setuptools_scm]