25 lines
573 B
TOML
25 lines
573 B
TOML
[project]
|
|
authors = [{name = "Giò Diani", email = "mail@gionathandiani.name"}]
|
|
dependencies = []
|
|
description = "Add a short description here"
|
|
name = "video_processing"
|
|
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_processing = { path = ".", editable = true }
|
|
database = { path = "../database", editable = true}
|
|
|
|
[tool.pixi.tasks]
|
|
|
|
[tool.pixi.dependencies]
|
|
ffmpeg-python = ">=0.2.0,<0.3"
|