Skip to content

Commit 6cbfa83

Browse files
authored
Update pyproject.toml
1 parent 0b9fa0f commit 6cbfa83

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

pyproject.toml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
[tool.poetry]
22
name = "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>"]
3+
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>"]
66
readme = "README.md"
77
license = "MIT"
88
homepage = "https://github.com/BriannaLind/PlanetOverlap"
99
repository = "https://github.com/BriannaLind/PlanetOverlap"
10-
documentation = "https://github.com/BriannaLind/PlanetOverlap"
11-
keywords = ["planet", "imagery", "satellite", "geospatial", "analysis"]
10+
keywords = ["planet", "satellite", "geospatial", "imagery"]
1211

12+
# Compatible Python version
1313
[tool.poetry.dependencies]
14-
python = "^3.10, <4.0"
15-
requests = "^2.31"
14+
python = "^3.10"
15+
requests = "^2.31.0"
16+
numpy = "^1.26.0"
17+
pandas = "^2.1.1"
1618
geopandas = "1.1.2"
17-
shapely = "^2.0"
18-
numpy = "^1.24"
19-
pandas = "^2.0"
20-
tqdm = "^4.66"
19+
shapely = "^2.1.1"
20+
fiona = "^1.9.4"
21+
pyproj = "^3.6.0"
2122

2223
[tool.poetry.group.dev.dependencies]
23-
pytest = "^7.3"
24-
flake8 = "^6.1"
25-
black = "^24.0"
26-
memory-profiler = "^1.0"
24+
pytest = "^7.4.2"
25+
flake8 = "^7.1.0"
26+
black = "^24.3.0"
27+
memory-profiler = "0.61.0"
2728

2829
[build-system]
29-
requires = ["poetry-core>=1.5.1"]
30+
requires = ["poetry-core>=1.6.0"]
3031
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)