Initial commit

This commit is contained in:
Alexander Wainwright
2025-06-22 16:03:48 +10:00
commit 62ca1bfab9
10 changed files with 966 additions and 0 deletions

51
pyproject.toml Normal file
View File

@@ -0,0 +1,51 @@
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "locutus"
version = "0.1.0"
description = "A simple borg wrapper"
requires-python = ">=3.10"
dependencies = [
]
authors = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
maintainers = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
readme = "README.md"
license = {file = "LICENSE"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
locutus = "locutus.main:main"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # import sort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
ignore = []
[tool.ruff.format]
indent-style = "tab"
quote-style = "single"
line-ending = "lf"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
strict = true