From 69898d7691f47d297413c3cf59eb2daf17bba18d Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Tue, 25 Mar 2025 14:26:13 +0100 Subject: [PATCH] Fix for modern poetry Fixes #25. Signed-off-by: Peter Lemenkov --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 68baa2c..f4e6b57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ -[tool.poetry] +[project] name = "eth-stdlib" version = "0.2.8" description = "Ethereum Standard Library for Python" -authors = ["Edward Amor "] +authors = [{name = "Edward Amor", email = "edward.amor3@gmail.com"}] license = "LGPL-3.0-only" readme = "README.md" repository = "https://github.com/skellet0r/eth-stdlib" @@ -17,6 +17,9 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries" ] + +[tool.poetry] +requires-poetry = ">=2.0" packages = [ { include = "eth", from = "src" }, ]