# HG changeset patch # User RhodeCode Admin # Date 2023-05-18 12:23:00 # Node ID 170035d4c35d5792c75a1cd145f1a97f509a277b # Parent dcd91423eb3003d84842bad46bff41c6b8905867 project: added pyproject.toml file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[project] +name = "rhodecode-vcsserver" +description = "" +requires-python = ">=3.10" +version = "5.0.0" + +[tool.ruff] +select = [ + # Pyflakes + "F", + # Pycodestyle + "E", + "W", + # isort + "I001" +] +ignore = [ + "E501", # line too long, handled by black +] +# Same as Black. +line-length = 120 + +[tool.ruff.isort] +known-first-party = ["vcsserver"]