Skip to content

Commit 25dcbb1

Browse files
authored
Update pyproject.toml
update to new
1 parent 6a18ef1 commit 25dcbb1

File tree

1 file changed

+24
-20
lines changed

1 file changed

+24
-20
lines changed

pyproject.toml

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
11
[tool.poetry]
2-
name = "planet_overlap"
2+
name = "planet-overlap" # distribution name (dash ok)
33
version = "1.0.0"
4-
description = "A Python package for querying, filtering, tiling, and analyzing Planet imagery datasets."
5-
authors = ["Your Name <you@example.com>"]
4+
description = "PlanetOverlap: AOI & temporal tiling pipeline for Planet imagery"
5+
authors = ["Brianna Lind <you@example.com>"]
66
readme = "README.md"
77
license = "MIT"
8-
homepage = "https://github.com/BriannaLind/PlanetOverlap"
9-
repository = "https://github.com/BriannaLind/PlanetOverlap"
10-
keywords = ["planet", "satellite", "geospatial", "imagery"]
8+
packages = [
9+
{ include = "planet_overlap" } # <- tells Poetry where the Python package lives
10+
]
1111

12-
# Compatible Python version
1312
[tool.poetry.dependencies]
1413
python = "^3.10"
15-
requests = "^2.31.0"
16-
numpy = "^1.26.0"
17-
pandas = "^2.1.1"
18-
geopandas = "1.1.2"
19-
shapely = "^2.1.1"
20-
fiona = "^1.9.4"
21-
pyproj = "^3.6.0"
14+
numpy = "^1.26"
15+
pandas = "^2.3"
16+
shapely = "^2.1"
17+
pyproj = "^3.7"
18+
fiona = "^1.10"
19+
geopandas = "^1.1.2"
20+
requests = "^2.32"
21+
click = "^8.3"
22+
tzdata = "^2025.3"
23+
python-dateutil = "^2.9"
24+
attrs = "^25.4"
25+
six = "^1.17"
2226

2327
[tool.poetry.group.dev.dependencies]
24-
pytest = "^7.4.2"
25-
flake8 = "^7.1.0"
26-
black = "^24.3.0"
27-
memory-profiler = "0.61.0"
28-
autoflake = "^2.3.2"
28+
pytest = "^7.4"
29+
flake8 = "^7.3"
30+
autoflake = "^2.3"
31+
black = "^24.10"
32+
memory-profiler = "^0.61"
2933

3034
[build-system]
31-
requires = ["poetry-core>=1.6.0"]
35+
requires = ["poetry-core>=1.5.0"]
3236
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)