-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
47 lines (42 loc) · 926 Bytes
/
pyproject.toml
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
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "multiversx-sdk-cli"
version = "9.10.0"
authors = [
{ name="MultiversX" },
]
license = "MIT"
description = "MultiversX Smart Contracts Tools"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
dependencies = [
"toml>=0.10.2",
"requests>=2.32.0,<3.0.0",
"prettytable",
"ledgercomm[hid]",
"semver",
"requests-cache",
"rich==13.3.4",
"argcomplete==3.2.2",
"multiversx-sdk==0.19.0"
]
[project.scripts]
mxpy = "multiversx_sdk_cli.cli:main"
[tool.hatch.build]
include = [
"multiversx_sdk_cli/**"
]
exclude = [
".github",
"multiversx_sdk_cli/tests/**"
]
[project.urls]
"Homepage" = "https://github.com/multiversx/mx-sdk-py-cli"