-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 934 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (24 loc) · 934 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "units-network"
version = "1.0.4"
description = "Scripts and classes to interact with Unit0"
dependencies = ["pywaves-ce==2.0.3", "web3~=7.2", "pymerkle~=6.1"]
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Vyatcheslav Suharnikov", email = "arz.freezy@gmail.com" }]
license = { text = "MIT License" }
keywords = ["units network", "blockchain", "waves"]
[project.urls]
Homepage = "https://github.com/UnitsNetwork/examples"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"units_network.abi" = ["*.json"]
[project.scripts]
u0-erc20-approve = "units_network.scripts.erc20_approve:main"
u0-transfer-c2e = "units_network.scripts.transfer_c2e:main"
u0-transfer-e2c = "units_network.scripts.transfer_e2c:main"
u0-transfer-e2c-withdraw = "units_network.scripts.transfer_e2c_withdraw:main"