25 lines
631 B
TOML
25 lines
631 B
TOML
[tool.poetry]
|
|
name = "sway-context-manager"
|
|
version = "0.1.0"
|
|
description = "Workspace context manager for the Sway compositor"
|
|
authors = ["Ezri Brimhall <ezri@ezri.dev>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.scripts]
|
|
sway_context_manager = 'sway_context_manager.server:main'
|
|
sway_listen = 'sway_context_manager.client:main'
|
|
sway_get_focused_workspace = 'sway_context_manager.client:get_workspace_definition'
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
i3ipc = "^2.2.1"
|
|
sdbus = "^0.12.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ipython = "^8.28.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|