-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
66 lines (60 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"]
[project]
name = "geocube"
version = "0.7.1.dev0"
description = "Tool to convert geopandas vector data into rasterized xarray data."
maintainers = [
{name = "geocube Contributors"},
]
keywords = [
"GDAL",
"rasterize",
"vector",
]
readme = "README.rst"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"appdirs",
"click>=6.0",
"geopandas>=1",
"odc_geo",
"rasterio>=1.3",
"rioxarray>=0.4",
"scipy",
"xarray>=0.17",
"pyproj>=2",
"numpy>=1.20",
]
[project.urls]
homepage = "https://corteva.github.io/geocube/"
documentation = "https://corteva.github.io/geocube/"
repository = "https://github.com/corteva/geocube"
changelog = "https://corteva.github.io/geocube/stable/history.html"
[project.scripts]
geocube = "geocube.cli.geocube:geocube"
[tool.setuptools.packages.find]
include = ["geocube", "geocube.*"]
[options.package_data]
geocube = [
"py.typed",
]
[tool.black]
target_version = ["py310"]