-
Notifications
You must be signed in to change notification settings - Fork 655
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 963 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
25
26
27
[project]
name = "video-subtitles"
version = "1.0.0"
description = "Display and style subtitles, with a toggle to enable/disable them."
requires-python = ">=3.10"
keywords = ["video", "subtitles", "vtt", "captions"]
authors = [{ name = "Flet team", email = "hello@flet.dev" }]
dependencies = ["flet", "flet-video"]
[dependency-groups]
dev = ["flet-cli", "flet-desktop", "flet-web"]
[tool.flet.gallery]
categories = ["Media/Video"]
[tool.flet.metadata]
title = "Subtitles"
docs_intro = "Attach a [`VideoSubtitleTrack`][flet_video.VideoSubtitleTrack] (here, raw VTT text) and customize its appearance with [`VideoSubtitleConfiguration`][flet_video.VideoSubtitleConfiguration]."
controls = ["SafeArea", "Column", "Switch", "Video"]
layout_pattern = "dashboard"
complexity = "basic"
features = ["inline VTT subtitle track", "custom subtitle styling", "toggle subtitles"]
[tool.flet]
org = "dev.flet"
company = "Flet"
copyright = "Copyright (C) 2023-2026 by Flet"