-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "kval"
description = "Tools for oceanographic data processing and analysis in Python"
version = "0.2.0-beta"
readme = "README.md"
authors = [
{ name = "Øyvind Foss", email = "oyvind.foss@npolar.no" },
]
maintainers = [
{ name = "Norwegian Polar Institute, Oceanography section", email = "" },
]
requires-python = ">=3.9"
dependencies = [
"xarray>=2023.10.1",
"jupyter>=1.0.0",
"ipykernel>=6.26.0",
"matplotlib>=3.7.2",
"numpy>=1.23",
"pandas>=2.1.0",
"glob2>=0.7",
"seawater>=3.3.4",
"cartopy>=0.21.1",
"cftime>=1.6.2",
"scipy>=1.11.3",
"cmocean>=3.0.3",
"tqdm>=4.66.1",
"ipympl>=0.9.3",
"mplcursors>=0.5.3",
"xlrd>=2.0.1",
"pyrsktools>=1.1.1",
"pygeomag>=1.0.2",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Oceanography",
]
[project.optional-dependencies]
compliance = [
"compliance-checker>=5.1.0",
]
dev = [
"pytest>=8.1.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/NPIOcean/kval/"