Update project config to use poetry

This commit is contained in:
2023-05-24 11:00:52 -04:00
parent 49cf552cc1
commit 59c5beb491
2 changed files with 22 additions and 4 deletions
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand.
package = []
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "81b2fa642d7f2d1219cf80112ace12d689d053d81be7f7addb98144d56fc0fb2"
+15 -4
View File
@@ -1,7 +1,3 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project] [project]
name = "boggler" name = "boggler"
version = "2.0.1" version = "2.0.1"
@@ -21,3 +17,18 @@ classifiers = [
[project.urls] [project.urls]
"Homepage" = "https://github.com/cblanken/boggler" "Homepage" = "https://github.com/cblanken/boggler"
"Bug Tracker" = "https://github.com/cblanken/boggler/issues" "Bug Tracker" = "https://github.com/cblanken/boggler/issues"
[tool.poetry]
name = "boggler"
version = "2.0.1"
description = "Utilities for solving the Boggle wod game."
authors = ["Cameron Blankenbuehler <cameron.blankenbuehler@protonmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"