-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
67 lines (60 loc) · 1.32 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
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "xbridge-cli"
version = "0.3.3"
description = "A CLI that helps you set up an XRPL-XRPL bridge."
readme = "README.md"
repository = "https://github.com/xpring-eng/xbridge-cli"
authors = ["Mayukha Vadari <[email protected]>"]
keywords = [
"xrp",
"xrpl",
"cryptocurrency",
]
license = "MIT"
include = [
"LICENSE",
]
packages = [
{ include = "xbridge_cli" },
]
[tool.poetry.scripts]
xbridge-cli = 'xbridge_cli.main:main'
[tool.poetry.dependencies]
python = "^3.7.1"
click = "^8.1.3"
tabulate = ">=0.8.9,<0.10.0"
httpx = ">=0.18.1,<0.25.0"
websockets = "^10.3"
Jinja2 = "^3.1.2"
psutil = "^5.9.2"
docker = "^6.0.0"
xrpl-py = "^2.4.0"
pycryptodome = "^3.17"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
black = "^23.3"
flake8-black = "^0.3.6"
flake8-docstrings = "^1.5.0"
mypy = "^1"
isort = "^5.11.4"
flake8-isort = "^6.0.0"
flake8-annotations = "^2.5.0"
flake8-absolute-import = "^1.0"
darglint = "^1.5.8"
types-tabulate = "^0.9.0"
coverage = "^7.2.7"
pytest = "^7.4.4"
[tool.isort]
# Make sure that isort's settings line up with black
profile = "black"
[tool.coverage.run]
branch = true
command_line = "-m pytest tests"
source = ["xbridge_cli"]
[tool.coverage.report]
show_missing = true
fail_under = 75
precision = 2
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"