-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (32 loc) · 974 Bytes
/
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
# See:
# - https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# - https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "redvox-pandas"
authors = [
{ name = "Infrasound Laboratory, University of Hawaii", email = "[email protected]" }
]
description = "Library to streamline preprocessing of RedVox API 900 and API 1000 data"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
version = "1.5.1"
dependencies = [
"matplotlib>=3.10.0",
"numpy>=2.2.1",
"obspy>=1.4.1",
"pandas>=2.2.2",
"pymap3d>=3.1.0",
"quantum-inferno>=1.1.3",
"redvox>=3.8.6",
"scipy>=1.15.0",
]
[project.urls]
homepage = "https://github.com/ISLA-UH/redpandas"
PyPI = "https://pypi.org/project/redpandas/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["redpandas*"]
exclude = ["redpandas.test*"]