-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 909 Bytes
/
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
# Copyright 2025 Lincoln Institute of Land Policy
# SPDX-License-Identifier: MIT
[project]
name = "rise-edr"
version = "0.1.0"
description = "Mappings from the USBR RISE API to OGC EDR"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.11.13",
"jsonpatch>=1.33",
"pygeoapi>=0.19.0",
"pytest>=8.3.4",
"redis>=5.2.1",
"starlette>=0.46.0",
"uvicorn>=0.34.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
]
keywords = [
"cgs",
"pygeoapi",
"rise",]
[dependency-groups]
dev = [
"rise-edr",
]
[tool.uv.sources]
rise-edr = { workspace = true }