Cura/printer-linter/pyproject.toml
Saumya Jain 38382eeec7 Add detection for deleted files in printer linter
This update adds a new check for deleted files in the printer linter. This will alert the user when a file has been deleted that could potentially disrupt upgrade scripts. An argument "--deleted" is also added to terminal.py to facilitate this new check. Additionally, the printer-linter version has been incremented to 0.1.2.

CURA-10903
2024-04-05 15:55:30 +02:00

17 lines
339 B
TOML

[project]
name = "printerlinter"
description = "Cura UltiMaker printer linting tool"
version = "0.1.2"
authors = [
{ name = "UltiMaker", email = "cura@ultimaker.com" }
]
dependencies = [
"pyyaml"
]
[project.scripts]
printer-linter = "terminal:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"