pyproject.toml
1 [project] 2 name = "clint" 3 version = "0.1.0" 4 description = "A custom linter for mlflow to enforce rules that ruff doesn't cover." 5 readme = "README.md" 6 authors = [{ name = "mlflow", email = "mlflow@mlflow.com" }] 7 dependencies = ["tomli", "typing_extensions"] 8 9 10 [project.scripts] 11 clint = "clint:main"