-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
39 lines (35 loc) · 1.03 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
[build-system]
build-backend = "mesonpy"
requires = ["numpy", "meson-python"]
[project]
name = "falwa"
authors = [
{ name="Clare S. Y. Huang", email="csyhuang@uchicago.edu" },
{ name="Christopher Polster", email="cpolster@uni-mainz.de" },
]
description = "Python package to compute finite-amplitude local wave activity diagnostics (Huang and Nakamura 2016, JAS)"
readme = "readme.md"
license = { file="LICENSE.txt" }
version = "2.1.0a"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Fortran",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = [
"numpy>=1.22",
"scipy",
"xarray"
]
[project.optional-dependencies]
test = [
"pytest",
"netcdf4"
]
[project.urls]
"Documentation" = "https://hn2016-falwa.readthedocs.io/"
"Repository" = "https://github.com/csyhuang/hn2016_falwa"
"Bug Tracker" = "https://github.com/csyhuang/hn2016_falwa/issues"