18 lines
423 B
TOML
18 lines
423 B
TOML
[project]
|
|
name = "bark-notify"
|
|
version = "0.1.0"
|
|
description = "向手机发送 Bark 通知的 Python 模块,覆盖全部通知类型与参数(uv 管理)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
bark-notify = "bark_notify.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/bark_notify"]
|