46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "muxplex"
|
|
version = "0.1.0"
|
|
description = "Web-based tmux session dashboard — access all your tmux sessions from any browser"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"aiofiles>=23.0",
|
|
"websockets>=11.0",
|
|
"python-pam>=1.8.4",
|
|
"itsdangerous>=2.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"httpx>=0.27.0",
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"beautifulsoup4>=4.12",
|
|
]
|
|
|
|
[project.scripts]
|
|
muxplex = "muxplex.cli:main"
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/bkrabach/muxplex"
|
|
Issues = "https://github.com/bkrabach/muxplex/issues"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["muxplex"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["muxplex/tests"]
|
|
asyncio_mode = "auto"
|
|
addopts = "--import-mode=importlib -m 'not integration'"
|
|
markers = [
|
|
"integration: marks tests as integration tests requiring real tmux (deselect with '-m not integration')",
|
|
]
|