-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
142 lines (128 loc) · 3.28 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[project]
name = "merchant001_sdk"
description = ""
authors = [
{name = "Alexander Lavrov", email = "[email protected]"},
]
dependencies = [
"httpx>=0.24.0",
]
requires-python = ">=3.10,<=3.12"
license = {file = "LICENSE"}
dynamic = ["version"]
readme = "README.md"
keywords = ["CLI", "client", "convertation", "crypto", "usdt"]
classifiers = ["Development Status :: 5 - Production/Stable", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules"]
[project.scripts]
merchant001-sdk = "merchant001_sdk.__main__:start"
[project.urls]
repository = "https://github.com/Elastoo-Team/merchant001_sdk"
documentation = "https://merchant001_sdk.readthedocs.io"
[project.optional-dependencies]
cli = [
"cliar>=1.3.5"
]
[tool.pdm]
version = { source = "file", path = "merchant001_sdk/__about__.py" }
[tool.pdm.dev-dependencies]
dev = [
"ipython==8.4.0",
"pre-commit==2.20.0",
"interrogate==1.5.0",
"doq==0.9.1",
"commitizen==2.31.0",
"ipykernel==6.17.1",
"mkdocs==1.4.1",
"mkdocs-material==8.5.10",
"mkdocstrings[python]==0.19.0"
]
[tool.pdm.build]
includes = []
[tool.pdm.scripts]
add = "git add ."
lint = "pre-commit run -a"
all = {composite = ["add", "lint"]}
[build-system]
requires = ["pdm-pep517==1.0.4"]
build-backend = "pdm.pep517.api"
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = true
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 70
exclude = ["setup.py", "docs", "build"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
verbose = 0
quiet = false
whitelist-regex = []
color = true
omit-covered-files = false
[tool.black]
line-length = 120
include = '\.pyi?$'
target-version = ['py311']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)
)
'''
[tool.isort]
known_first_party = "merchant001_sdk"
line_length = 120
profile = "black"
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true
[tool.pycln]
all = true
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
no_site_packages = true
strict_optional = false
strict = true
allow_subclassing_any = true
allow_untyped_calls = true
pretty = true
show_error_codes = true
implicit_reexport = true
allow_untyped_decorators = true
warn_return_any = false
disable_error_code = ["valid-type", "call-arg"]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.21"
version_files = [
"merchant001_sdk/__about__.py:__version__",
]
style = [
["qmark", "fg:#ff9d00 bold"],
["question", "bold"],
["answer", "fg:#ff9d00 bold"],
["pointer", "fg:#ff9d00 bold"],
["highlighted", "fg:#ff9d00 bold"],
["selected", "fg:#cc5454"],
["separator", "fg:#cc5454"],
["instruction", ""],
["text", ""],
["disabled", "fg:#858585 italic"]
]