From 2715dd7ef03029167acc060cb1bc13e1d12c2d8c Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Wed, 15 May 2024 13:09:27 +0200 Subject: [PATCH] Initial --- .gitignore | 8 ++++++++ pyproject.toml | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9a583a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +* + +!*.py +!pyproject.toml +!README.md +!src +!.gitignore + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..633760e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "buguser" +version = "0.1.0" +description = "" +authors = ["Guilhem Lavaux "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"