Fix up build or some shit

This commit is contained in:
2025-12-23 09:25:07 +01:00
parent 4db35616af
commit 73e72bcb3b
2 changed files with 7 additions and 5 deletions

View File

@@ -16,10 +16,10 @@ from collections import OrderedDict
from datetime import datetime
from PIL import Image
from croppa.utils import load_image_utf8, get_active_window_title
from croppa.tracking import FeatureTracker
from croppa.capture import Cv2BufferedCap
from croppa.project_view import ProjectView
from utils import load_image_utf8, get_active_window_title
from tracking import FeatureTracker
from capture import Cv2BufferedCap
from project_view import ProjectView
class VideoEditor:

View File

@@ -2,7 +2,6 @@
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",
@@ -12,3 +11,6 @@ dependencies = [
[project.scripts]
croppa = "main:main"
[tool.setuptools]
py-modules = ["capture", "main", "project_view", "tracking", "utils"]