-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (65 loc) · 1.66 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
67
68
69
70
71
72
73
74
75
76
[project]
version = "0.4.0"
name = "odc-loader"
description = "Tooling for constructing xarray objects from parsed metadata"
readme = "README.md"
requires-python = ">= 3.10"
license = {file = "LICENSE"}
dependencies = [
"odc-geo>=0.4.7",
"rasterio>=1.0.0,!=1.3.0,!=1.3.1",
"dask[array]",
"numpy>=1.20.0",
"xarray>=0.19",
]
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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/opendatacube/odc-loader/"
# Documentation = "https://odc-loader.readthedocs.io/en/latest/"
"Bug Reporting" = "https://github.com/opendatacube/odc-loader/issues"
[project.optional-dependencies]
botocore = ["botocore"]
zarr = [
"zarr>=2.18.3",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "odc.loader"
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
allow_redefinition = true
show_error_codes = true
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
max-line-length = 120
max-args = 10
disable = [
"missing-function-docstring",
"invalid-name",
"fixme",
"wrong-import-order",
"duplicate-code",
"ungrouped-imports",
]
[dependency-groups]
dev = [
"coverage>=7.6.7",
"geopandas>=1.0.1",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
]