-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (40 loc) · 1.21 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
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "wmsan"
version = "2024.1.3"
authors = [
{ name="Lisa Tomasetto", email="lisa.tomasetto@gmail.com" },
]
description = "Compute seismic sources of ambient noise using wave model hindcast outputs."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Unix",
]
dependencies = ["numpy<2.0.0", # until obspy 1.5 is released
"pandas",
"scipy",
"h5py",
"xarray",
"dask",
"matplotlib",
"pyproj",
"tqdm",
"netcdf4",
"cartopy",
"obspy",
"datetime",
"ipykernel",
"notebook"
]
[project.urls]
Homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/tomasetl/ww3-source-maps/"
Issues = "https://gricad-gitlab.univ-grenoble-alpes.fr/tomasetl/ww3-source-maps/-/issues"
Documentation = "https://tomasetl.gricad-pages.univ-grenoble-alpes.fr/ww3-source-maps/"