forked from xpring-eng/sidechain-launch-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.16 KB
/
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
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "sidechain-launch-kit"
version = "1.0.0-beta.0"
description = "Python scripts to tests and explore side chains"
readme = "README.md"
repository = "https://github.com/xpring-eng/sidechain-launch-kit"
authors = [
"Mayukha Vadari <[email protected]>",
"Scott Determan <[email protected]>"
]
keywords = [
"xrp",
"xrpl",
"cryptocurrency",
"blockchain",
"sidechain"
]
license = "MIT"
include = [
"LICENSE",
]
packages = [
{ include = "slk" },
]
[tool.poetry.scripts]
sidechain-shell = "slk.run_shell:main"
sidechain-config = "slk.create_config_files:main"
[tool.poetry.dependencies]
python = ">= 3.8, < 3.10"
pytest = "^6.2.5"
websockets = "^9.1"
xrpl-py = "^1.3.0"
python-dotenv = "^0.19.1"
tabulate = "^0.8.9"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
black = "^20.8b1"
flake8-black = "^0.2.1"
flake8-docstrings = "^1.5.0"
mypy = "^0.790"
isort = "^5.7.0"
flake8-isort = "^4.0.0"
flake8-annotations = "^2.5.0"
flake8-absolute-import = "^1.0"
darglint = "^1.5.8"
[tool.isort]
# Make sure that isort's settings line up with black
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"