From dd34edbe7ed335702626cfd2ddc7cf08affa9cfa Mon Sep 17 00:00:00 2001 From: Shohei KAMON Date: Sat, 19 Apr 2025 13:46:32 +0800 Subject: [PATCH] update poetry related docs Signed-off-by: Shohei KAMON --- poetry.lock | 2 +- pyproject.toml | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index 349f86a..ea92781 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1583,4 +1583,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.11,<3.14" -content-hash = "654f6c2e4f671223c758c03fba02f3af8fca173734f413fd105fcae488d3c05d" +content-hash = "f26e8d7fa34d515ef6b39cd69fe4568439ffa878e6eb91870cf0204b2cc16146" diff --git a/pyproject.toml b/pyproject.toml index 1b23141..7c34f0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,13 +2,12 @@ name = "fireblocks-cli" version = "0.1.5" description = "An unofficial CLI for managing Fireblocks services." -authors = [{ name = "Kamon Shohei" }] +authors = [{ name = "Kamon Shohei", email = "cameong@stir.network" }] readme = "README.md" requires-python = ">=3.11,<3.14" dependencies = [ "typer[all]>0.15.0", "toml>0.10.0" - ] [project.scripts] @@ -18,8 +17,12 @@ fireblocks-cli = "fireblocks_cli.main:app" mypy = "^1.15.0" pyinstaller = "^6.13.0" black = "^25.1.0" -reuse = "^5.0.2" +reuse = { version = "^5.0.2", python = ">=3.9,<4.0" } pre-commit = "^4.2.0" build = "^1.2.2.post1" twine = "^6.1.0" pytest = "^8.3.5" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"