Files
ETPlot/pyproject.toml
T
2025-09-08 09:44:49 +02:00

29 lines
505 B
TOML

[project]
name = "plot-gallery"
version = "0.1.0"
description = "Host your plots on a personal website"
authors = [
{ name = "K. Schmidt" }
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"jinja2",
"pyyaml",
]
[tool.black]
line-length = 120
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 120
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203", "W503"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"