-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (20 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
24 lines (20 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tool.poetry]
name = "python-for-cv"
version = "0.1.0"
description = "A hands-on course where you'll learn how to **build your own image processing toolkit in Python**, tailored for **real-world computer vision tasks**. From loading images to simulating defects and preparing datasets for deep learning — this course gives you the tools to do it all (and ship your own CLI tool at the end!)."
authors = ["deep <deepp.knowledge@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.0"
opencv-python = "^4.11.0.86"
numpy = "^2.2.5"
pillow = "^11.2.1"
matplotlib = "^3.10.3"
tabulate = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.2.0"
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
package-mode = false