-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# SPDX-FileCopyrightText: 2025 Ethersecurity Inc.
#
# SPDX-License-Identifier: MPL-2.0
# Author: Shohei KAMON <cameong@stir.network>
[project]
name = "fireblocks-cli"
version = "0.1.10"
description = "An unofficial CLI for managing Fireblocks services."
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",
"tomlkit>=0.13.2,<0.14.0",
"fireblocks-sdk>=2.16.1,<3.0.0"
]
[project.scripts]
fireblocks-cli = "fireblocks_cli.main:app"
[project.optional-dependencies]
dev = [
"mypy>=1.15.0",
"black>=25.1.0,<26.0.0",
"pyinstaller>=6.13.0",
"black>=25.1.0",
"reuse>=5.0.2; python_version >= '3.9' and python_version < '4.0'",
"pre-commit>=4.2.0",
"build>=1.2.2.post1",
"twine>=6.1.0",
"pytest>=8.3.5",
"types-toml>=0.10.8.20240310"
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["fireblocks_cli*"]