25 lines
652 B
TOML
25 lines
652 B
TOML
[project]
|
|
authors = [{name = "Giò Diani", email = "mail@gionathandiani.name"}]
|
|
dependencies = ["opencv-python>=4.10.0.84,<5", "numpy>=2.1.3,<3", "scikit-learn>=1.5.2,<2", "polars>=1.13.0,<2"]
|
|
description = "Add a short description here"
|
|
name = "video_colors"
|
|
requires-python = ">= 3.11"
|
|
version = "0.1.0"
|
|
|
|
[build-system]
|
|
build-backend = "hatchling.build"
|
|
requires = ["hatchling"]
|
|
|
|
[tool.pixi.project]
|
|
channels = ["conda-forge"]
|
|
platforms = ["linux-64"]
|
|
|
|
[tool.pixi.pypi-dependencies]
|
|
video_colors = { path = ".", editable = true }
|
|
database = { path = "../database", editable = true}
|
|
|
|
[tool.pixi.tasks]
|
|
|
|
[tool.pixi.dependencies]
|
|
wand = ">=0.6.10,<0.7"
|