This commit is contained in:
Guilhem Lavaux 2024-05-15 13:09:27 +02:00
commit 2715dd7ef0
2 changed files with 22 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*
!*.py
!pyproject.toml
!README.md
!src
!.gitignore

14
pyproject.toml Normal file
View File

@ -0,0 +1,14 @@
[tool.poetry]
name = "buguser"
version = "0.1.0"
description = ""
authors = ["Guilhem Lavaux <guilhem.lavaux@iap.fr>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"