-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yooink"
version = "0.1.7"
authors = [
{ name="Michelle Weirathmueller", email="michelle@waveformanalytics.com" },
]
description = "A package for accessing OOI data via the m2m protocol"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
keywords = ["OOI", "ocean observatory data"]
dependencies = [
"beautifulsoup4>=4.13.3",
"h5netcdf>=1.5.0",
"h5py>=3.13.0",
"munch>=4.0.0",
"numpy>=2.0.2",
"pandas>=2.2.3",
"pyarrow>=19.0.1",
"python-dateutil>=2.9.0.post0",
"pytz>=2025.1",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"tomlkit>=0.13.2",
"tqdm>=4.67.1",
"xarray>=2024.7.0",
]
[project.urls]
Repository = "https://github.com/Waveform-Analytics/yooink"
Documentation = "https://waveform-analytics.github.io/yooink/"
Issues = "https://github.com/Waveform-Analytics/yooink/issues"