2024-05-26 09:26:55 +01:00
|
|
|
[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"
|
2024-05-26 10:35:21 +01:00
|
|
|
license = "MIT"
|
|
|
|
repository = "https://git.xenia.me.uk/pixelifytica/nix-background-upgrade"
|
2024-05-26 09:26:55 +01:00
|
|
|
packages = [{include = "nix_background_upgrade", from = "src"}]
|
|
|
|
|
2024-05-26 10:35:21 +01:00
|
|
|
[tool.poetry.scripts]
|
2024-06-02 06:52:28 +01:00
|
|
|
nix-background-upgrade = 'nix_background_upgrade.main:main'
|
2024-05-26 10:35:21 +01:00
|
|
|
|
2024-05-26 09:26:55 +01:00
|
|
|
[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 = "*"
|
2024-05-26 09:26:55 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|