24 lines
456 B
TOML
24 lines
456 B
TOML
[project]
|
|
name = "icra"
|
|
version = "0.1.0"
|
|
description = "Interactive Color Range Analyzer (ICRA) for Tkinter"
|
|
readme = "README.md"
|
|
authors = [{ name = "ICRA contributors" }]
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pillow>=10.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
icra = "app.launcher:main"
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"app" = ["assets/logo.png", "lang/*.toml"]
|