42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
|
|
[project]
|
||
|
|
name = "ember-colorized"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Apply Ember color palettes to images with high precision"
|
||
|
|
readme = "README.md"
|
||
|
|
license = "LGPL-3.0-only"
|
||
|
|
authors = [
|
||
|
|
{ name = "JesusChapman", email = "jesuschapman@openlat.dev" }
|
||
|
|
]
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
classifiers = [
|
||
|
|
"Development Status :: 4 - Beta",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.10",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
"Programming Language :: Python :: 3.13",
|
||
|
|
"Topic :: Multimedia :: Graphics",
|
||
|
|
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
|
||
|
|
]
|
||
|
|
dependencies = [
|
||
|
|
"numpy>=2.2.6",
|
||
|
|
"pillow>=12.3.0",
|
||
|
|
"scikit-learn>=1.7.2",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
gpu = [
|
||
|
|
"torch>=2.7.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.urls]
|
||
|
|
Homepage = "https://openlat.dev/jesuschapman/ember-colorized"
|
||
|
|
Repository = "https://openlat.dev/jesuschapman/ember-colorized"
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
ember-colorizer = "ember_colorized.cli:main"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["uv_build>=0.12.5,<0.13.0"]
|
||
|
|
build-backend = "uv_build"
|