Skip to content

Commit

Permalink
add missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cwmeijer committed Oct 21, 2024
1 parent 3a5c178 commit 768c839
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
dependencies = [
"tqdm",
"numpy",
"pandas",
"rasterio",
"sklearn",
]
description = "Segment (georeferenced) raster data in an interactive fashion. Retrain models in seconds. Only small amounts of labeled data necessary because of our use of pretrained base models as feature extractors."
keywords = ["Segmentation"," UNet"," Active learning"," Drone"," Raster data"," Spatial data"]
license = {file = "LICENSE"}
Expand All @@ -32,6 +38,12 @@ requires-python = ">=3.8"
version = "0.1.0"

[project.optional-dependencies]
train = [
"torch",
"PIL",
"torchvision",
"mlflow",
]
dev = [
"build", # build is not only used in publishing (below), but also in the template's test suite
"bump-my-version",
Expand Down

0 comments on commit 768c839

Please sign in to comment.