generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (40 loc) · 1.36 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>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gee_zonal"
version = "0.1.0"
description = "Wrapper function to request temporal and zonal statistics from Google Earth Engine"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.md", content-type = "text/markdown"}
keywords = ["zonal statistics", "gee", "earth engine"]
authors = [
{name="Development Data Group", email="[email protected]"},
]
maintainers = [
{name="Andres Chamorro", email="[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"earthengine-api>=0.1.342",
"pandas>=1.2.2",
"geopandas>=0.12.2",
]
[project.optional-dependencies]
notebook = ["notebook>=6.5.2"]
[project.urls]
"Homepage" = "https://github.com/worldbank/GEE_Zonal"
"Bug Reports" = "https://github.com/worldbank/GEE_Zonal/issues"
"Source" = "https://github.com/worldbank/GEE_Zonal"