mirror of https://github.com/Wox-launcher/Wox
23 lines
519 B
TOML
23 lines
519 B
TOML
[project]
|
|
name = "wox-plugin-host"
|
|
version = "0.0.1"
|
|
description = "Python host for Wox plugins"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "GPL-3.0"
|
|
authors = [{ name = "Wox Team", email = "qianlifeng@gmail.com" }]
|
|
dependencies = ["loguru", "websockets", "wox-plugin==0.0.49"]
|
|
|
|
[project.scripts]
|
|
run = "wox_plugin_host.__main__:run"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["shiv", "ruff", "mypy"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.ruff]
|
|
line-length = 140
|