-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 796 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "gradekit"
version = "0.1.3"
description = "Local CLI color-analysis tool that diagnoses a frame and bakes the fix into an editor-agnostic .cube LUT (Premiere, Resolve, FCP, ffmpeg…)."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Joona" }]
dependencies = [
"numpy>=1.24",
"Pillow>=10.0",
]
[project.optional-dependencies]
# `pip install .[face]` upgrades automatic face detection. Not required.
face = ["opencv-python>=4.8"]
[project.scripts]
# `pipx install .` (or `pip install .`) puts a bare `gradekit` command on your PATH.
gradekit = "gradekit.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["gradekit*"]