-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
89 lines (81 loc) · 2.43 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
[project]
name = "async-geotiff"
version = "0.1.0-beta.3"
description = "Async GeoTIFF reader for Python"
readme = "README.md"
authors = [{ name = "Kyle Barron", email = "kyle@developmentseed.org" }]
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
keywords = ["geotiff", "tiff", "async", "cog", "raster", "gis"]
dependencies = [
"affine>=2.4.0",
"async-tiff>=0.4.0",
"numpy>=2.0",
"pyproj>=3.3.0",
]
[project.urls]
Homepage = "https://github.com/developmentseed/async-geotiff"
Repository = "https://github.com/developmentseed/async-geotiff"
Issues = "https://github.com/developmentseed/async-geotiff/issues"
Changelog = "https://github.com/developmentseed/async-geotiff/blob/main/CHANGELOG.md"
Documentation = "https://developmentseed.github.io/async-geotiff/"
[project.optional-dependencies]
morecantile = ["morecantile>=7.0,<8.0"]
[dependency-groups]
dev = [
"affine>=3.0rc1",
"build>=1.4.0",
"ipykernel>=7.1.0",
"jsonschema>=4.26.0",
"morecantile>=7.0.2",
"obstore>=0.8.2",
"pydantic>=2.12.5",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"rasterio>=1.4.4",
"types-jsonschema>=4.26.0.20260109",
]
[build-system]
requires = ["uv_build>=0.8.8,<0.9.0"]
build-backend = "uv_build"
[tool.ruff]
extend-exclude = ["fixtures"]
[[tool.mypy.overrides]]
module = [
# Should be fixed in affine 3.0
# https://github.com/rasterio/affine/issues/135
"affine.*",
"async_tiff.store.*",
]
ignore_missing_imports = true
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"EM101", # raw string in exception
"EM102", # f-string in exception
"FIX002", # todo statements
"PYI051", # literal strings redundant with str in type union
"TD002", # todo without author name
"TRY003", # define exceptions in the exception class
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"ANN001", # annotation in function argument
"ANN201", # return type annotation
"S101", # assert
"SLF001", # private member access
"D", # docstring
]