Skip to content

Commit

Permalink
Merge pull request #34 from colinahill/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
colinahill authored Apr 18, 2024
2 parents 6e37188 + c1add4a commit 5475fbb
Show file tree
Hide file tree
Showing 16 changed files with 1,736 additions and 643 deletions.
1,432 changes: 817 additions & 615 deletions poetry.lock

Large diffs are not rendered by default.

38 changes: 20 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,40 @@
[tool.poetry]
name = "terrapyn"
version = "0.1.1"
version = "0.1.2"
description="Toolkit to manipulate Earth observations and models."
authors = ["colinahill <[email protected]>"]
readme = "README.md"
license="BSD-3-Clause"
packages = [{include = "terrapyn"}]

[tool.poetry.dependencies]
python = ">=3.11,<3.12"
python = ">=3.10,<3.12"
xarray = "^2024"
pandas = "^2.0.0"
geopandas = "^0.14"
numpy = "^1.26.0"
scipy = "^1.12.0"
pandas = "^2"
geopandas = "*"
numpy = "*"
scipy = "*"
dask = "^2024"
matplotlib = "^3.8.0"
bottleneck = "^1.3.0"
shapely = "^2.0.0"
netcdf4 = "^1.6.0"
ipykernel = "^6.29.0"
matplotlib = "^3"
bottleneck = "^1"
shapely = "^2"
netcdf4 = "*"
ipykernel = "^6"
pyarrow = "^15"
fiona = "^1.9.0"
tqdm = "^4.66.0"
fiona = "*"
tqdm = "*"
jupyterlab = "^4.1"
rioxarray = "^0.15"
earthengine-api = "^0.1.394"
polygon-geohasher = "^0.0.1"
geemap = "^0.32.0"
rioxarray = "*"
earthengine-api = "^0.1"
polygon-geohasher = "*"
geemap = "*"
google-cloud-bigquery = "^3.20.1"
db-dtypes = "^1.2.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
pytest-cov = "^4.0"
isort = "^5.12"
isort = "^5"
black = "^23.3"
pre-commit = "^3.2"
freezegun = "^1.2"
Expand Down
2 changes: 2 additions & 0 deletions terrapyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from . import (
bq,
conversion,
dask_utils,
ee,
Expand Down Expand Up @@ -26,6 +27,7 @@
"io",
"ee",
"logger",
"bq",
]
__version__ = "0.1.1"

Expand Down
3 changes: 3 additions & 0 deletions terrapyn/bq/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import data

__all__ = ["data"]
Loading

0 comments on commit 5475fbb

Please sign in to comment.