Skip to content

Commit 2654350

Browse files
authored
Update pyproject.toml
It uses geopandas >=1.4 (compatible with Python 3.11) and the new Poetry dev-dependencies syntax.
1 parent 0830814 commit 2654350

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

pyproject.toml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
[tool.poetry]
22
name = "planet_overlap"
3-
version = "0.1.0"
4-
description = "Automated PlanetScope imagery processing for multiple AOIs and date ranges"
5-
authors = ["Hankui Zhang <email@example.com>"]
6-
packages = [{include = "planet_overlap"}]
3+
version = "0.2.0"
4+
description = "Automated PlanetScope imagery processing with tiling, pagination, and analysis"
5+
authors = ["Brianna Lind <your-email@example.com>"]
6+
readme = "README.md"
7+
license = "MIT"
8+
homepage = "https://github.com/BriannaLind/PlanetOverlap"
9+
repository = "https://github.com/BriannaLind/PlanetOverlap"
10+
documentation = "https://github.com/BriannaLind/PlanetOverlap"
11+
keywords = ["planet", "imagery", "satellite", "geospatial", "analysis"]
712

813
[tool.poetry.dependencies]
914
python = "^3.11"
10-
geopandas = "^1.2"
15+
requests = "^2.31"
16+
geopandas = "^1.4"
1117
shapely = "^2.0"
1218
numpy = "^1.24"
13-
requests = "^2.31"
14-
pandas = "^2.0"
19+
pandas = "^2.1"
20+
tqdm = "^4.66"
1521

16-
[tool.poetry.dev-dependencies]
17-
pytest = "^7.3"
18-
pytest-cov = "^4.1"
19-
20-
[tool.poetry.scripts]
21-
planet-client = "planet_overlap.client:run_client"
22+
[tool.poetry.group.dev.dependencies]
23+
pytest = "^7.4"
24+
memory-profiler = "^0.61"
25+
flake8 = "^6.1"
2226

2327
[build-system]
24-
requires = ["poetry-core>=1.3.2"]
28+
requires = ["poetry-core>=1.6.0"]
2529
build-backend = "poetry.core.masonry.api"
26-
27-
[tool.pytest.ini_options]
28-
minversion = "7.0"
29-
addopts = "--cov=planet_overlap --cov-report=term-missing"
30-
testpaths = ["tests"]

0 commit comments

Comments
 (0)