We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 518bb40 commit d901703Copy full SHA for d901703
DEVELOP.md
@@ -0,0 +1,3 @@
1
+```
2
+> uv sync --all-extras
3
pyproject.toml
@@ -0,0 +1,18 @@
+[project]
+name = "async-geotiff"
+version = "0.1.0"
4
+description = "Async GeoTIFF reader for Python"
5
+readme = "README.md"
6
+authors = [{ name = "Kyle Barron", email = "kyle@developmentseed.org" }]
7
+requires-python = ">=3.11"
8
+dependencies = ["async-tiff>=0.4.0-beta.1"]
9
+
10
+[project.optional-dependencies]
11
+morecantile = ["morecantile>=7.0,<8.0"]
12
13
+[dependency-groups]
14
+dev = ["ipykernel>=7.1.0"]
15
16
+[build-system]
17
+requires = ["uv_build>=0.8.8,<0.9.0"]
18
+build-backend = "uv_build"
src/async_geotiff/__init__.py
@@ -0,0 +1,2 @@
+def hello() -> str:
+ return "Hello from async-geotiff!"
src/async_geotiff/py.typed
0 commit comments