Initial commit
This commit is contained in:
51
pyproject.toml
Normal file
51
pyproject.toml
Normal 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
|
||||
Reference in New Issue
Block a user