forked from powellb/seapy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (62 loc) · 1.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
build-backend = 'mesonpy'
requires = [
"wheel",
"meson-python>=0.15.0",
"setuptools<60.0", # Do not increase, 60.0 enables vendored distutils
# "oldest-supported-numpy; python_version>'3.9'",
# "numpy; python_version<='3.9'"
"numpy",
]
[project]
name = "seapy"
license = {file = "LICENSE.txt"}
description = "State Estimation and Analysis in PYthon"
maintainers = [{ name = "Brian Powell", email = "powellb@hawaii.edu" }]
requires-python = ">=3.8"
dependencies = [
# TODO: update to "pin-compatible" once possible, see
# https://github.com/FFY00/meson-python/issues/29
"numpy>=1.19.5",
"cartopy",
"h5py",
"joblib",
"netcdf4",
"numpy",
"numpy_groupies",
"rich",
"scipy"
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dynamic = ['version']
[project.optional-dependencies]
test = [
"pytest",
"meson",
"tox",
]
dev = [
"ruff",
]