From d136b0af210e657df3d16847e50b31edf2cb8829 Mon Sep 17 00:00:00 2001 From: Oleksandr Kozachuk Date: Wed, 12 Apr 2023 10:28:27 +0200 Subject: [PATCH] Some settings --- .vscode/settings.json | 7 +++++++ fjerkroabot/pyproject.toml | 14 ++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 fjerkroabot/pyproject.toml diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9b38853 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file diff --git a/fjerkroabot/pyproject.toml b/fjerkroabot/pyproject.toml new file mode 100644 index 0000000..35b3ee4 --- /dev/null +++ b/fjerkroabot/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "fjerkroabot" +version = "0.1.0" +description = "" +authors = ["Oleksandr Kozachuk "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"