Skip to content

Commit 3adabc3

Browse files
committed
here we go
0 parents  commit 3adabc3

11 files changed

+1394
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# python generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# venv
10+
.venv

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11.9

pyproject.toml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[project]
2+
name = "fused-local"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
authors = [
6+
{ name = "Gabe Joseph", email = "[email protected]" }
7+
]
8+
dependencies = [
9+
"rio-tiler>=6.6.1",
10+
"rio-viz>=0.12.2",
11+
"pystac-client>=0.8.2",
12+
"planetary-computer>=1.0.0",
13+
"numpy>=1.26.4",
14+
"xarray>=2024.5.0",
15+
"attrs>=23.2.0",
16+
"odc-geo>=0.4.5",
17+
"morecantile>=5.3.0",
18+
"fastapi>=0.111.0",
19+
"pydantic>=2.7.2",
20+
"hypercorn>=0.17.3",
21+
"pydeck>=0.9.1",
22+
"pillow>=10.3.0",
23+
"odc-stac>=0.3.9",
24+
"geocube>=0.5.2",
25+
]
26+
readme = "README.md"
27+
requires-python = ">= 3.8"
28+
29+
[build-system]
30+
requires = ["hatchling"]
31+
build-backend = "hatchling.build"
32+
33+
[tool.rye]
34+
managed = true
35+
dev-dependencies = [
36+
"ipython>=8.25.0",
37+
"jupyterlab>=4.2.1",
38+
]
39+
40+
[tool.hatch.metadata]
41+
allow-direct-references = true
42+
43+
[tool.hatch.build.targets.wheel]
44+
packages = ["src/fused_local"]

0 commit comments

Comments
 (0)