-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 946 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geemap-tools"
version = "0.1.0"
description = "Ferramentas auxiliares para Google Earth Engine e geemap"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name="André Belem", email="andrebelem@id.uff.br" }
]
license = {text = "MIT"}
keywords = ["gee", "geemap", "remote sensing", "earth engine", "terra climate", "chirps", "ibge", "sidra"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"earthengine-api>=0.1",
"eemont>=0.3.5",
"pyproj>=3.0",
"pandas>=1.2",
"tqdm>=4.60",
"xarray>=2023.1",
"rioxarray>=0.13",
"matplotlib>=3.3",
"geemap>=0.20",
"openpyxl"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["geemap_tools*"]
exclude = ["private_dev"]