-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.39 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
[build-system]
requires = [
"setuptools>61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ipensive"
dynamic = ["version"]
authors = [{name = "Aaron Wech", email = "awech@usgs.gov"}]
description = "Infrasound array processing for volcano monitoring."
readme = "README.md"
license = { text = "CC0-1.0" }
requires-python = ">=3.10"
dependencies = [
"obspy",
"pandas",
"jinja2",
"pyyaml",
"numba",
"setuptools<82.0"
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: CC0 1.0 Universal (CC0 1.0)",
]
keywords = ["infrasound", "volcano", "array processing", "monitoring"]
[project.scripts]
ipensive-backfill = "ipensive.scripts.back_populate:main"
ipensive-run = "ipensive.scripts.run_processing:main"
ipensive-metadata = "ipensive.scripts.update_metadata:main"
[tool.setuptools.dynamic]
version = {attr = "ipensive.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
[tool.coverage.run]
omit = [
"src/lts_array/*",
"tests/*"
]