nix-background-upgrade/pyproject.toml
Evie Litherland-Smith ddee47ce40 Refactor to clean up python files
Combine unnecessary amount of python files into single main.py

Add default.nix for building without Flakes enabled

Adjust flake.nix to use poetry2nix callPackage for both default and
shell, to be more consistent
2024-06-02 06:52:28 +01:00

27 lines
722 B
TOML

[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"
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
black = "*"
isort = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"