14 lines
284 B
TOML
14 lines
284 B
TOML
[project]
|
|
name = "croppa"
|
|
version = "0.1.0"
|
|
description = "Fast and lightweight video editor for cropping, zooming, and cutting"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"opencv-python>=4.8.0",
|
|
"numpy>=1.24.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
croppa = "main:main"
|