forked from google/earthengine-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (27 loc) · 894 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "earthengine-catalog"
version = "0.1.0"
description = "A library for accessing Earth Engine catalog data."
authors = ["Google Earth Engine Team <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/google/earthengine-catalog"
packages = [
{ include = "stac" },
{ include = "checker" },
]
[tool.poetry.dependencies]
python = "^3.9"
google-cloud-aiplatform = "^1.18.0"
iso8601 = "^2.1.0"
typing_extensions = "^4.0.0"
checker = { path = "checker", develop = true } # Define checker as a main dependency
[tool.poetry.group.checker.dependencies]
absl-py = "^1.0.0"
[tool.poetry.extras]
stac = ["checker"] # This allows users to install stac with its checker dependency
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"