line-detection / pyproject.toml
AKA Math
Update demo
9a67d72
Raw
History Blame Contribute Delete
1.18 kB
[project]
name = "line-detection"
version = "0.1.0"
description = "Interactive Hough Transform and RANSAC Line Detection Demo"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Uni Bern Intro to Image Analysis Course"}
]
keywords = ["computer-vision", "image-processing", "hough-transform", "ransac", "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 :: Education",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"streamlit>=1.28.0",
"numpy>=1.24.3",
"opencv-python-headless>=4.8.1.78",
"matplotlib>=3.7.2",
"scikit-image>=0.21.0",
"Pillow>=10.0.1",
]
[project.urls]
Homepage = "https://github.com/ubern-image-analysis/line-detection"
Repository = "https://github.com/ubern-image-analysis/line-detection"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []
[tool.hatch.build.targets.wheel]
packages = ["."]