-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "lt-gee-py"
description = "Python interface to the Google Earth Engine implementation of the LandTrendr spectral-temporal segmentation algorithm."
authors = [
{name = "Myscon Truong", email = "[email protected]"},
{name = "Robert Kennedy", email = "[email protected]"},
{name = "Peter Clary", email = "[email protected]"}
]
keywords = ["Google Earth Engine", "LandTrendr", "GEE", "spectral-temporal segmentation", "time series analysis", "land cover change detection"]
license = {file = "LICENSE"}
dynamic = ["version"]
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent",
]
[project.urls]
repository = "https://github.com/eMapR/lt-gee-py"
issue_tracker = "https://github.com/eMapR/lt-gee-py/issues"
[tool.setuptools.packages.find]
where = ["src"]
exclude = [".github*"]
[tool.setuptools_scm]