-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1000 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "rlcms"
version = "2024.7.2"
description = "workflows for regional land cover mapping, built in Google Earth Engine"
readme = "README.md"
authors = [{ name = "Kyle Woodward", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["land cover", "mapping"]
dependencies = [
"earthengine-api",
"hydrafloods",
"pandas"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["geemap"]
[project.urls]
Homepage = "https://github.com/sig-gis/rlcms/"
[project.scripts]
composite = "rlcms.cli.composite:main"
sample_pts = "rlcms.cli.sample_pts:main"
train_test = "rlcms.cli.train_test:main"
primitives = "rlcms.cli.primitives:main"
landcover = "rlcms.cli.landcover:main"