56 lines
889 B
TOML
56 lines
889 B
TOML
[project]
|
|
name = ""
|
|
version = ""
|
|
description = ""
|
|
authors = [
|
|
{name = "Daniel Cormier",email = "git@drc97.com"},
|
|
]
|
|
dependencies = [
|
|
"rich>=13.5.3",
|
|
"nicegui>=1.3.14",
|
|
"boto3>=1.28.52",
|
|
"boto3-stubs[essential]>=1.28.52",
|
|
"fabric>=3.2.2",
|
|
]
|
|
requires-python = ">=3.11"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"setuptools>=68.2.2",
|
|
]
|
|
|
|
[tool.ruff]
|
|
extend-select = [
|
|
"ANN",
|
|
"B",
|
|
"BLE",
|
|
"C4",
|
|
"ERA",
|
|
"I",
|
|
"ICN",
|
|
"INP",
|
|
"ISC",
|
|
"N",
|
|
"NPY",
|
|
"PGH",
|
|
"PIE",
|
|
# "PTH",
|
|
"Q",
|
|
"RET",
|
|
"RSE",
|
|
"RUF",
|
|
"S",
|
|
"SIM",
|
|
"T20",
|
|
"TCH",
|
|
"TID",
|
|
"YTT",
|
|
]
|
|
ignore = ["E402", "B905", "N818", "S101"]
|
|
show-fixes = true
|
|
|
|
[tool.pdm.scripts]
|
|
main = "python src/program.py"
|
|
ruff = "ruff check --fix src/"
|