20 lines
480 B
TOML
20 lines
480 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 = []
|
|
|
|
[project.scripts]
|
|
plugin-helper = "plugin_helper.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|