mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-03-02 21:19:11 +00:00
32 lines
832 B
TOML
32 lines
832 B
TOML
[project]
|
|
name = "vban-cli"
|
|
version = "0.4.1"
|
|
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
|
readme = "README.md"
|
|
license = { text = "LICENSE" }
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"cyclopts>=4.6.0",
|
|
"loguru>=0.7.3",
|
|
"vban-cmd>=2.6.0",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
|
|
[project.scripts]
|
|
vban-cli = "vban_cli.app:run"
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[tool.uv.sources]
|
|
vban-cmd = { path = "../vban-cmd-python" }
|