-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (59 loc) · 1.63 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "movie-color-timeline"
version = "0.1.2"
description = "Movie color analysis tool for building frame-by-frame average color timeline posters."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "aelder" }]
keywords = [
"movie color analysis",
"film color palette",
"average color poster",
"frame color timeline",
"tiff processing",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"numpy>=1.26.0",
"Pillow>=10.0.0",
]
[project.urls]
Homepage = "https://github.com/aelder/image_processing"
Repository = "https://github.com/aelder/image_processing"
Issues = "https://github.com/aelder/image_processing/issues"
[project.optional-dependencies]
progress = ["tqdm>=4.66.0"]
cuda = [
"cupy-cuda12x>=13.0.0",
"numba>=0.59.0",
]
dev = [
"ruff>=0.6.0",
]
[project.scripts]
img-timeline = "img_timeline.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]