mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-18 11:49:35 +08:00

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
17 lines
339 B
TOML
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" |