-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
98 lines (86 loc) · 2.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "IS2view"
description = "Interactive visualization and data extraction tool for the ICESat-2 ATL14/15 Gridded Land Ice Height Products"
keywords = [
"ICESat-2",
"elevation",
"digital elevation models",
"ipython",
"jupyter",
"graphics",
]
authors = [
{name = "Tyler Sutterley"},
{name = "Ben Smith"},
{email = "tsutterl@uw.edu"}
]
maintainers = [{ name = "IS2view contributors" }]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = "~=3.6"
dependencies = [
"h5netcdf",
"ipyleaflet",
"matplotlib",
"numpy",
"rioxarray",
"setuptools_scm",
"xarray",
]
dynamic = ["version"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://is2view.readthedocs.io"
Documentation = "https://is2view.readthedocs.io"
Repository = "https://github.com/tsutterley/IS2view"
Issues = "https://github.com/tsutterley/IS2view/issues"
[project.optional-dependencies]
doc = ["docutils", "graphviz", "ipywidgets", "notebook", "numpydoc", "sphinx", "sphinx-argparse>=0.4", "sphinx_rtd_theme"]
all = ["boto3", "bottleneck", "dask", "geopandas", "ipywidgets", "notebook", "owslib", "s3fs", "xyzservices", "zarr"]
dev = ["flake8", "pytest>=4.6", "pytest-cov"]
[tool.setuptools.packages.find]
exclude = ["test*", "run*"]
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = ".git"
python_files = [
"test*.py"
]
testpaths = [
"test"
]
[tool.coverage.run]
branch = true
source = [
"IS2view",
"test",
]
omit = [
"setup.py",
"conf.py",
"scripts/*",
]
[tool.coverage.report]
show_missing = true
precision = 2
[tool.setuptools_scm]
local_scheme = "node-and-date"
version_scheme = "python-simplified-semver"
version_file = "IS2view/_version.py"