-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.0","setuptools-scm>=8","pytest"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaltim"
dynamic = ["version"]
authors = [
{ name="Roelof Rietbroek", email="r.rietbroek@utwente.nl" },
]
description = "Tools to work with Satellite radar altimetry"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 1 - Planning"
]
dependencies = [ "xarray >= 2023.1.0","importlib_metadata","requests","pystac-client"]
#[project.optional-dependencies]
#geoslurp = ["geoslurp >= 3.0","eodag"]
[tool.setuptools_scm]
# empty for now
[project.urls]
"Homepage" = "https://github.com/ITC-Water-Resources/pyaltim"
"Bug Tracker" = "https://github.com/ITC-Water-Resources/pyaltim/issues"
[project.entry-points."geoslurp.dsetfactories"]
hydroweb = "pyaltim.geoslurp.hydroweb:getHydroWebDsets"
dahitiweb = "pyaltim.geoslurp.dahiti:getDahitiDsets"
sworddb = "pyaltim.geoslurp.sword:getSwordDsets"