-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.04 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "videocut-cli"
version = "0.2.1"
description = "AI-powered video automation tool for Content Creators. Download, Edit, and Publish."
readme = "README.md"
authors = [
{ name = "Pena Digital", email = "hello@penadigital.tech" }
]
license = { text = "MIT" }
keywords = ["video", "automation", "yt-dlp", "ffmpeg", "ai", "content-creator", "downloader"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
]
requires-python = ">=3.9"
dependencies = [
"typer[all]>=0.9.0",
"rich>=13.0.0",
"yt-dlp>=2023.12.30",
"curl-cffi>=0.5.10",
"imageio-ffmpeg>=0.4.9",
"shellingham>=1.5.0",
]
[project.urls]
Homepage = "https://github.com/pendig/videocut-cli"
Issues = "https://github.com/pendig/videocut-cli/issues"
[project.scripts]
videocut = "videocut.cli:app"
[tool.setuptools.packages.find]
include = ["videocut*"]