-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (53 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
57
58
59
60
61
62
[tool.poetry]
name = "scribe"
version = "0.1.0"
description = "MX Smart contracts CLI for deployment and management"
authors = ["Vlad Nedelcu <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "scribe", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
typer = {extras = ["all"], version = "^0.7.0"}
rich = "^12.6.0"
toml = "^0.10.2"
PyYAML = "^6.0"
multiversx-sdk-cli = "^5.3.1"
multiversx-sdk-network-providers = "^0.6.7"
PyGithub = "^1.57"
pygit2 = "^1.11.1"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pytest = "^7.2.1"
pytest-mock = "^3.10.0"
types-toml = "^0.10.8.3"
types-PyYAML = "^6.0.12.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
scribe = "scribe.cli:app"
[tool.black]
line-length = 120
target-version = ['py310']
extend-exclude = '''
(
config.py
| exceptions.py
)
'''
[tool.isort]
profile = "hug"
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
pretty = true
[[tool.mypy.overrides]]
module = [
"multiversx_sdk_cli",
"multiversx_sdk_network_providers",
]
ignore_missing_imports = true