forked from noaa-ocs-hydrography/interpolation_uncertainty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1021 Bytes
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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "interpolation_uncertainty"
version = "0.0.1"
description = "Python Codes for testing various Uncertainty Estimation methods"
requires-python = ">=3.10"
dependencies = [
"build",
"gdal<3.12",
"matplotlib",
"jupyterlab",
"scipy"
]
authors = [
{name = "Francis Corpuz", email = "francis.corpuz@noaa.gov"},
{name = "Glen Rice", email = "glen.rice@noaa.gov"},
{name = "Elias Adediran", email = "elias.adediran@unh.edu"},
]
readme = "README.md"
license = "CC0-1.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Oceanography",
]
[project.urls]
Homepage = "https://nauticalcharts.noaa.gov/learn/nbs.html"
[dependency-groups]
dev = [
"pytest"
]