Dalai Felinto
cae71f4e35
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 (71eee5ccac
) 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.
Reviewed-on: #190
Reviewed-by: Nick Alberelli <tinynick@noreply.localhost>
21 lines
543 B
TOML
21 lines
543 B
TOML
[project]
|
|
name = "blender-studio-pipeline"
|
|
version = "0.0.2"
|
|
description = """
|
|
The complete collection of documents, add-ons, scripts and tools that
|
|
make up the Blender Studio pipeline.
|
|
"""
|
|
authors = [
|
|
"Francesco Siddi <fsiddi@blender.org>",
|
|
"Nick Alberelli <nick@blender.org>",
|
|
"Sebastian Parborg <sebastian@blender.org>",
|
|
"Demeter Dzadik <demeter@blender.org>",
|
|
"Simon Thommes <simon@blender.org>"
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.8"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
skip_string_normalization = true
|