nix-background-upgrade/pyproject.toml

27 lines
722 B
TOML
Raw Permalink Normal View History

[tool.poetry]
name = "nix-background-upgrade"
version = "0.1.0"
description = "Upgrade NixOS system (and/or home-manager) in the background, with notification support"
authors = ["Evie Litherland-Smith <evie@xenia.me.uk>"]
readme = "README.md"
license = "MIT"
repository = "https://git.xenia.me.uk/pixelifytica/nix-background-upgrade"
packages = [{include = "nix_background_upgrade", from = "src"}]
[tool.poetry.scripts]
nix-background-upgrade = 'nix_background_upgrade.main:main'
[tool.poetry.dependencies]
python = "^3.9"
notify-py = "^0.3.0"
2024-05-26 10:06:30 +01:00
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
black = "*"
isort = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"