computer-vision/pyproject.toml

24 lines
525 B
TOML

[tool.poetry]
name = "vision"
version = "0.1.0"
description = "Jupyter scratchpad for playing with computer vision"
authors = ["andy <andy@sarsoo.xyz>"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.19.5"
opencv-python = "^4.5.1"
scikit-learn = "^0.24.1"
scipy = "^1.6.0"
jupyterlab = {version = "^3.0.6", optional = true}
ipykernel = "^5.4.3"
[tool.poetry.dev-dependencies]
[tool.poetry.extras]
jupyter = ["jupyterlab"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"