16 lines
373 B
TOML
16 lines
373 B
TOML
[project]
|
|
name = "croppa"
|
|
version = "0.1.0"
|
|
description = "Fast and lightweight video editor for cropping, zooming, and cutting"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"opencv-python>=4.8.0",
|
|
"numpy>=1.24.0",
|
|
"Pillow>=10.0.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
croppa = "main:main"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["capture", "main", "project_view", "tracking", "utils"] |