-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
102 lines (95 loc) · 2.41 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
99
100
101
102
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dhdt"
version = "0.1.0"
dependencies = [
"affine",
"cdsapi",
# "gdal",
"geopandas",
"matplotlib",
"morphsnakes @ git+https://github.com/GO-Eratosthenes/morphsnakes@albedo-included",
"netcdf4",
"numpy",
"pandas",
"pillow",
"pygrib",
"pyproj",
"pystac",
"pystac-client",
"rasterio",
"rioxarray",
"scikit-image",
"scikit-learn",
"scipy",
"shapely>=2",
"stactools",
"stactools-sentinel2",
]
description = "Extracting topography from mountain glaciers, through the use of shadow casted by surrounding mountains. Imagery from optical satellite systems are used, over all mountain ranges on Earth."
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Bas Altena", email = "b.altena@uu.nl"},
{name = "Francesco Nattino", email = "f.nattino@esciencecenter.nl"},
{name = "Ou Ku"},
{name = "Meiert W. Grootes"},
{name = "Emma Izquierdo-Verdiguier"},
{name = "Serkan Girgin"},
{name = "Raul Zurita-Milla"},
]
keywords = ["Python", "glacier elevation change", "optical remote sensing", "geodetic imaging", "feature tracking"]
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
[project.urls]
repository = "https://github.com/"
documentation = "https://dhdt.readthedocs.io"
changelog = "https://github.com/GO-Eratosthenes/dhdt/blob/master/CHANGELOG.rst"
#doi = "https://doi.org/10.5281/zenodo.???????"
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov",
"pycodestyle",
]
dev = [
"cffconvert",
"isort",
"yapf",
]
docs = [
"sphinx",
"docutils==0.16",
"sphinx_rtd_theme==0.5.2",
"recommonmark",
"nbsphinx",
"sphinx-gallery",
]
extra = [
"jupyterlab"
]
[tool.setuptools]
packages = ["dhdt"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov --cov-report term"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["dhdt"]
[tool.style]
based_on_style = "pep8"
spaces_before_comment = 4
split_before_logical_operator = true