commit 2715dd7ef03029167acc060cb1bc13e1d12c2d8c Author: Guilhem Lavaux Date: Wed May 15 13:09:27 2024 +0200 Initial 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"