File size: 621 Bytes
43abac3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | [project]
name = "ecopulse-satellite-analysis"
version = "1.0.0"
description = "Advanced Satellite Vegetation Analysis using SAM and CNNs"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"torch>=2.0.0",
"torchvision>=0.15.0",
"numpy",
"pandas",
"opencv-python",
"matplotlib",
"scikit-learn",
"Pillow",
"jupyter",
"pyyaml",
"segment-anything @ git+https://github.com/facebookresearch/segment-anything.git",
"requests",
"tqdm",
"tensorboard",
"streamlit",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
|