-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 2.01 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=68", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "movie-barcodes"
description = "Compress every frame of a movie in a single color barcode. Transform entire movies into stunning single-barcode visualizations. Capture the essence of cinematic storytelling through dominant color extraction from each frame."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [
{ name = "Clément Delteil", email = "clement45.delteil45@gmail.com" }
]
keywords = [
"visualization", "python", "opencv", "color extraction", "data science",
"machine learning", "movies", "computer vision", "multiprocessing",
"parallel computing", "barcode", "image processing", "multithreading",
"data visualization", "video processing", "color barcode"
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"colorama==0.4.6",
"joblib==1.3.2",
"numpy==1.26.0",
"opencv-python==4.8.1.78",
"Pillow==10.3.0",
"scikit-learn==1.5.0",
"scipy==1.11.2",
"threadpoolctl==3.2.0",
"tqdm==4.66.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Wazzabeee/movie-barcodes"
Repository = "https://github.com/Wazzabeee/movie-barcodes"
[project.scripts]
movie-barcodes = "movie_barcodes.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.ruff]
line-length = 120
# Match repo's default Python for linting/formatting
target-version = "py312"
exclude = [
"env/",
]
[tool.ruff.lint]
# Keep compatibility with Black-style slicing
extend-ignore = ["E203"]