mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-16 13:53:05 +00:00
- Move simpleaudio to optional dependency (audio extra) - Add DummySound fallback when optional audio libs are unavailable - Import simpleaudio/numpy lazily with ImportError handling - Remove Docker-specific sound disabling logic - Improve typing and robustness of sound utilities https://chatgpt.com/share/693dec1d-60bc-800f-8ffe-3886a9c265bd
49 lines
923 B
TOML
49 lines
923 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "infinito-nexus"
|
|
version = "0.0.0"
|
|
description = "Infinito.Nexus"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { file = "LICENSE.md" }
|
|
|
|
dependencies = [
|
|
"numpy",
|
|
"ansible",
|
|
"colorscheme-generator @ https://github.com/kevinveenbirkenbach/colorscheme-generator/archive/refs/tags/v0.3.0.zip",
|
|
"bcrypt",
|
|
"ruamel.yaml",
|
|
"PyYAML",
|
|
"tld",
|
|
"passlib",
|
|
"requests",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
audio = [
|
|
"simpleaudio",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
# Non-src layout: explicitly control packaged modules
|
|
packages = { find = { where = ["."], include = [
|
|
"cli*",
|
|
"filter_plugins*",
|
|
"lookup_plugins*",
|
|
"module_utils*",
|
|
"library*",
|
|
], exclude = [
|
|
"roles*",
|
|
"assets*",
|
|
"docs*",
|
|
"templates*",
|
|
"logs*",
|
|
"tasks*",
|
|
"tests*",
|
|
"__pycache__*",
|
|
] } }
|
|
include-package-data = true
|