-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
39 lines (36 loc) · 1019 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
38
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clouddrift"
version = "0.21.3"
authors = [
{ name="Shane Elipot", email="selipot@miami.edu" },
{ name="Philippe Miron", email="philippemiron@gmail.com" },
{ name="Milan Curcic", email="mcurcic@miami.edu" }
]
description = "Accelerating the use of Lagrangian data for atmospheric, oceanic, and climate sciences"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.8.4",
"awkward>=2.0.0",
"fsspec>=2022.3.0",
"netcdf4>=1.6.4",
"numpy>=1.22.4",
"pandas>=1.3.4",
"pyarrow>=8.0.0",
"tqdm>=4.64.0",
"requests>=2.31.0",
"scipy>=1.11.2",
"xarray>=2023.5.0",
"zarr>=2.14.2",
]
[project.urls]
Homepage = "https://github.com/Cloud-Drift/clouddrift"
Documentation = "https://cloud-drift.github.io/clouddrift"