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
+15 -4
View File
@@ -1,7 +1,3 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "boggler"
version = "2.0.1"
@@ -21,3 +17,18 @@ classifiers = [
[project.urls]
"Homepage" = "https://github.com/cblanken/boggler"
"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"