edge-detection / pyproject.toml
AKA Math
Update demo
dead0ef
Raw
History Blame Contribute Delete
1.06 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "edge-detection-demo"
version = "1.0.0"
description = "Interactive educational demo for edge detection algorithms"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Uni Bern Intro to Image Analysis Course"}
]
keywords = ["edge-detection", "computer-vision", "image-processing", "education", "streamlit"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"numpy>=1.24.0",
"opencv-python-headless>=4.8.0",
"streamlit>=1.39.0",
"Pillow>=10.0.0",
"huggingface-hub>=0.19.0",
]
[project.urls]
Homepage = "https://github.com/ubern-image-analysis/edge-detection"
Repository = "https://github.com/ubern-image-analysis/edge-detection"