Initial commit

This commit is contained in:
2023-09-22 08:19:29 -04:00
commit d9c6d1132c
8 changed files with 533 additions and 0 deletions

47
pyproject.toml Normal file
View File

@@ -0,0 +1,47 @@
[project]
name = ""
version = ""
description = ""
authors = [
{name = "Daniel Cormier",email = "git@drc97.com"},
]
dependencies = [
"rich>=13.5.3",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[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/"