-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.1 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
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.poetry]
name = "neic-catalog-separation"
authors = ["Kirstie Haynie <[email protected]>"]
description = "Separate/classify a subduction zone earthquake catalog into sub-catalogs: crustal, interface, intraslab."
homepage = "https://code.usgs.gov/ghsc/neic/utilities/neic-catalog-segregation"
include = [
"LICENSE.md"
]
keywords = ["usgs", "neic", "nshm", "catalog", "earthquake"]
license = "CC0-1.0"
packages = [
{ include = "src", from = "catalog_sep" }
]
repository = "https://code.usgs.gov/ghsc/neic/utilities/neic-catalog-segregation"
version = "1.0.0"
[tool.poetry.dependencies]
python = ">=3.9,<=3.10"
numpy = "1.23.2"
pandas = "^1.4.3"
mapio = "^0.8"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
poethepoet = "^0.10.0"
[tool.poe.tasks]
# e.g. "poetry run poe lint"
lint = [
{ shell = "black --check catalog_sep/src" },
{ shell = "isort --check catalog_sep/src" }
]
test = [
{ shell = "pytest catalog_sep/src/test" }
]