-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (105 loc) · 2.75 KB
/
pyproject.toml
File metadata and controls
117 lines (105 loc) · 2.75 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[project]
name = "odc-geo"
description = "Geometry Classes and Operations (opendatacube)"
version = "0.5.1"
authors = [
{name = "Open Data Cube"},
]
maintainers = [
{name = "Open Data Cube"},
]
license = {text = "Apache License 2.0"}
readme = "README.rst"
keywords = ["gis", "geospatial", "opendatacube"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"affine",
"cachetools",
"numpy",
"pyproj>=3.0.0",
"shapely",
"xarray>=0.19",
]
[project.urls]
Homepage = "https://github.com/opendatacube/odc-geo/"
Documentation = "https://odc-geo.readthedocs.io/en/latest/"
"ODC Docs" = "https://opendatacube.readthedocs.io/en/latest/"
"Bug Reporting" = "https://github.com/opendatacube/odc-geo/issues"
[project.optional-dependencies]
xr = [] # xarray is now a non-optional dependency
warp = ["rasterio"]
tiff = ["tifffile", "imagecodecs", "dask[array,distributed]", "rasterio"]
s3 = ["boto3"]
az = ["azure-storage-blob"]
las = ["laspy", "lazrs"]
all = ["rasterio", "tifffile", "imagecodecs", "dask[array,distributed]", "boto3", "azure-storage-blob", "laspy", "lazrs"]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "odc.geo"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
allow_redefinition = true
[tool.coverage.run]
omit = [
"tests/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"^ *\\.\\.\\.$",
]
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
max-line-length = 120
max-args = 15
max-positional-arguments = 12
disable = [
"missing-function-docstring",
"missing-module-docstring",
"invalid-name",
"fixme",
"wrong-import-order",
"cyclic-import",
"ungrouped-imports",
"wrong-import-position",
"too-few-public-methods",
"unsubscriptable-object",
]
[dependency-groups]
dev = [
"azure-storage-blob>=12.25.0",
"boto3>=1.37.21",
"dask[array,distributed]>=2024.8.0",
"folium>=0.19.5",
"geopandas>=1.0.1",
"imagecodecs>=2024.12.30",
"ipyleaflet>=0.19.2",
"matplotlib>=3.9.4",
"mypy",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"pytest-timeout>=2.3.1",
"rasterio>=1.4.3",
"tifffile>=2024.8.30",
"xarray>=0.19",
"laspy>=2.5.4",
"lazrs>=0.6.2",
"types-cachetools",
]