Add poetry script to run main boggler script

- Also correct import for boggler_utils to be relative in __main__.py so it can be run
as module with `python -m boggler`
This commit is contained in:
2023-05-24 12:15:18 -04:00
parent ac58828521
commit a0d60d280c
2 changed files with 8 additions and 2 deletions
+3
View File
@@ -28,6 +28,9 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.scripts]
boggler = "boggler.__main__:main"
[build-system]
requires = ["poetry-core"]