-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
95 lines (86 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "iris-wallet-desktop"
version = "0.1.1"
description = ""
readme = "README.md"
license = ""
authors = ["pv-gaurangpatel <[email protected]>"]
# Packages configuration
packages = [
{ include = "src" }
]
# Dependencies
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pydantic = "2.7.1"
PySide6 = "6.7.3"
requests = "2.31.0"
keyring = "25.2.1"
cleo = "^2.1.0"
pillow = "^10.3.0"
qrcode = "^7.4.2"
pydenticon = "^0.3.0"
# Development dependencies
pytest-mock = "^3.14.0"
pytest-qt = "^4.4.0"
pyqt-toast-notification = "^1.2.0"
pre-commit = "^3.7.1"
google-auth = "^2.30.0"
google-auth-oauthlib = "^1.2.0"
google-auth-httplib2 = "^0.2.0"
google-api-python-client = "^2.133.0"
python-dotenv = "^1.0.1"
bip32utils = "^0.3.post4"
mnemonic = "^0.21"
importlib-resources = "^6.4.0"
importlib-metadata = "^8.0.0"
cryptography = "^43.0.0"
asyncio = "^3.4.3"
requests-cache = "^1.2.1"
pytest-xdist = "^3.6.1"
[tool.poetry.dev-dependencies]
black = "24.4.1"
bump2version = "1.0.1"
pyinstaller = ">=4.5.1"
pylint = "3.1.0"
pre-commit = "3.7.1"
#extra package only for windows os
winsdk = {version = "^1.0.0b10", markers = "sys_platform == 'win32'"}
pywin32 = {version = "^306", markers = "sys_platform == 'win32'"}
# Scripts
[tool.poetry.scripts]
iris-wallet = "src.main:main"
unit-test = "pytest tests --cov=src --cov-report=html:coverage-report --html=coverage-report/pytest_report.html"
reset-app = "src.utils.reset_app:main"
build-iris-wallet = "build_script:main"
# Build system
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
pytest-qt = "^4.4.0"
pytest-mock = "^3.14.0"
coverage = "^7.5.3"
pytest-html = "^4.1.1"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Black configuration
[tool.black]
line-length = 88
target-version = ["py38"]
include = ".pyi?$"
exclude = '''
/(
\.eggs
\.git
\.hg
\.mypy_cache
\.tox
\.venv
_build
buck-out
build
dist
)/
foo.py
'''