Files
plugin-helper/pyproject.toml
T
2026-07-01 11:44:03 -07:00

22 lines
504 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plugin-helper"
version = "0.1.0"
description = "A safe CLI for managing Beat Saber plugins in mounted BSManager instances."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "plugin-helper contributors" }]
dependencies = [
"textual>=8.2,<9",
]
[project.scripts]
plugin-helper = "plugin_helper.cli:main"
[tool.setuptools.packages.find]
where = ["src"]