diff --git a/croppa/main.py b/croppa/main.py index 99f61c9..7c5f601 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -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: diff --git a/croppa/pyproject.toml b/croppa/pyproject.toml index e63c721..c39d678 100644 --- a/croppa/pyproject.toml +++ b/croppa/pyproject.toml @@ -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"] \ No newline at end of file