From 45afda17a89eb8a0bd5fa553ccf07abeb632ce17 Mon Sep 17 00:00:00 2001 From: Mike Bird Date: Thu, 22 Feb 2024 17:25:02 -0500 Subject: [PATCH] contributing draft, roadmap skeleton, add black and isort --- 01OS/pyproject.toml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/01OS/pyproject.toml b/01OS/pyproject.toml index 42f5992..cdc373f 100644 --- a/01OS/pyproject.toml +++ b/01OS/pyproject.toml @@ -32,4 +32,17 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -01 = "start:main" \ No newline at end of file +01 = "start:main" + +[tool.poetry.group.dev.dependencies] +black = "^23.10.1" +isort = "^5.12.0" +pre-commit = "^3.6.2" + +[tool.black] +target-version = ['py311'] + +[tool.isort] +profile = "black" +multi_line_output = 3 +include_trailing_comma = true \ No newline at end of file