Files
VoxVera/pyproject.toml
thePR0M3TH3AN c563626ab7 fix packaging
2025-06-19 19:56:54 -04:00

23 lines
423 B
TOML

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["voxvera*"]
[project]
name = "voxvera"
version = "0.1.0"
description = "VoxVera CLI utilities"
readme = "README.md"
authors = [{name = "VoxVera"}]
requires-python = ">=3.9"
dependencies = [
"InquirerPy",
"rich",
]
[project.scripts]
voxvera = "voxvera.cli:main"