forked from lunes-platform/lunespy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 953 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
[tool.poetry]
name = "lunespy"
version = "1.40.0"
description = "Library for communication with nodes in mainnet or testnet of the lunes-blockchain network Allows the automation of sending assets, issue end reissue tokens, leasing, registry, and create new wallet."
authors = [
"Lunes Platform <development@lunes.io>"
]
license = "Apache-2.0"
readme = "README.md"
documentation = "https://github.com/lunes-platform/lunespy/blob/main/docs/TUTORIAL.md"
keywords = [
"cryptocurrency",
"lunes",
"blockchain"
]
[tool.poetry.dependencies]
python-axolotl-curve25519 = "^0.4.1.post2"
requests = "^2.26.0"
base58 = "^2.1.0"
python = "^3.8"
pytest-parallel = "^0.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
log = "lunespy.utils:generate_log"
[tool.pytest.ini_options]
markers = [
"requests: marks tests as slow"
]