19 lines
362 B
TOML
19 lines
362 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "couchos"
|
|
version = "0.1.0"
|
|
description = "CouchOS living-room Melee appliance tooling"
|
|
requires-python = ">=3.11"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|