-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 873 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
28
29
30
[project]
name = "py100mbify"
version = "0.2.7"
description = "A command-line tool for compressing video files to a target size using FFmpeg."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Unlicense"}
keywords = ["ffmpeg", "webm", "video", "compression", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
]
dependencies = []
[project.optional-dependencies]
# Install on Windows with: uv pip install -e ".[windows]"
windows = ["psutil"]
[project.scripts]
py100mbify = "py100mbify:main"
[build-system]
# Switch to setuptools for a pure-Python build chain (formerly uv).
# This avoids needing Rust/maturin on lightweight environment.
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {where = ["src"]}