Add pyproject.toml

This commit is contained in:
Kylian Schmidt
2025-07-22 09:49:43 +02:00
parent 491a4a9fd2
commit 6eeacdc9b7
5 changed files with 114 additions and 202 deletions
+25
View File
@@ -0,0 +1,25 @@
[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"
[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"