From a831cf899b997768bce9100ab62668673eda7115 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 5 Jan 2024 12:39:21 +0100 Subject: [PATCH] Fix pyproject.toml This syntax was wrong (and breaking `black`, since black needs this file for its settings). Note that sometimes the toml file has author=, email=. But since the original commit (71eee5ccac00) went for a simple format, I'm just using it here as well. I also removed some extra spaces/chars at the end of lines. --- pyproject.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 115a5582..1674929e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,20 +1,20 @@ -[project] +[project] name = "blender-studio-pipeline" version = "0.0.2" description = """ - The complete collection of documents, add-ons, scripts and tools that + The complete collection of documents, add-ons, scripts and tools that make up the Blender Studio pipeline. """ authors = [ - {"Francesco Siddi" }, - {"Nick Alberelli "}, - {"Sebastian Parborg" }, - {"Demeter Dzadik" }, - {"Simon Thommes" } + "Francesco Siddi ", + "Nick Alberelli ", + "Sebastian Parborg ", + "Demeter Dzadik ", + "Simon Thommes " ] readme = "README.md" requires-python = ">= 3.8" -[tool.black] -line-length = 100 -skip_string_normalization = true \ No newline at end of file +[tool.black] +line-length = 100 +skip_string_normalization = true -- 2.30.2