Files
sd_viewer/pyproject.toml
Daniel Cormier a3c7c530a9 added nicegui as a dependency
updated dependencies to latest versions
2023-11-30 14:20:54 -05:00

52 lines
809 B
TOML

[project]
name = ""
version = ""
description = ""
authors = [
{name = "Daniel Cormier", email = "git@drc97.com"},
]
dependencies = [
"pysimplegui>=4.60.5",
"Pillow>=9.5.0",
"httpx>=0.24.1",
"setuptools>=68.0.0",
"rich>=13.4.2",
"nicegui>=1.4.3",
]
requires-python = ">=3.11"
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/"