ICRA/pyproject.toml

24 lines
444 B
TOML

[project]
name = "icrs"
version = "0.1.0"
description = "Interactive Color Range Analyzer (ICRS) for Tkinter"
readme = "README.md"
authors = [{ name = "ICRS contributors" }]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"pillow>=10.0.0",
]
[project.optional-dependencies]
ui = ["ttkbootstrap>=1.10.0"]
[project.scripts]
icrs = "app.app:start_app"
[tool.uv]
package = true
[tool.setuptools.packages.find]
include = ["app"]