41 lines
803 B
TOML
41 lines
803 B
TOML
[project]
|
|
name = "lohup"
|
|
version = "0.1.0"
|
|
description = "Backups done silly"
|
|
readme = "README.md"
|
|
maintainers = [
|
|
{name = "Igor Ovsyannikov"}
|
|
]
|
|
license = "MIT"
|
|
keywords = ["restic", "rustic", "backups"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Intended Audience :: System Administrators",
|
|
"Topic :: System :: Archiving :: Backup",
|
|
"Topic :: Utilities",
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"click>=8.2.1",
|
|
"humanize>=4.13.0",
|
|
"tomlkit>=0.13.3",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/kam1sh/lohup"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"isort>=8.0.1",
|
|
"pyinstaller>=6.21.0",
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
lohup = "lohup.cli:cli"
|
|
|
|
[tool.uv]
|
|
package = true
|