Skip to content

Commit d901703

Browse files
authored
feat: Create initial project files (#1)
1 parent 518bb40 commit d901703

File tree

5 files changed

+867
-0
lines changed

5 files changed

+867
-0
lines changed

DEVELOP.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```
2+
> uv sync --all-extras
3+
```

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "async-geotiff"
3+
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from async-geotiff!"

src/async_geotiff/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)