From aa20d31631403f9650f3b4090d5c8579f9abaf5b Mon Sep 17 00:00:00 2001 From: Mitchell Augustin Date: Mon, 27 Jan 2025 14:56:40 -0600 Subject: [PATCH] Add project name to pyproject.toml Newer versions of poetry require project.name --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d329ac9..50954f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,9 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] +[project] +name = "anytree" + [project.urls] "Homepage" = "https://github.com/c0fec0de/anytree" "Documentation" = "https://anytree.readthedocs.io/en/latest/" @@ -117,4 +120,4 @@ commands = poetry run coverage xml poetry run pylint anytree poetry run make html -C docs -""" \ No newline at end of file +"""