-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (65 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
77 lines (65 loc) · 1.86 KB
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
[tool.poetry]
name = "wallee"
version = "6.4.0"
description = "SDK that allows you to access Wallee Group AG API"
authors = ["Wallee AG"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/wallee-payment/python-sdk"
keywords=["wallee", "Payment", "Payment Integration"]
include = ["wallee/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
urllib3 = ">=2.3, <3"
pydantic = "^2.10.4"
PyJWT = "^2.10.1"
python-dateutil = "^2.9.0.post0"
typing-extensions = "^4.12.2"
[tool.poetry.dev-dependencies]
flake8 = "^7.1.1"
mypy = "^1.14.1"
pytest = "^3.9"
tox = "^4.23.2"
types-python-dateutil = "^2.9.0.20241206"
[tool.poetry.classifiers]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Point-Of-Sale"
]
[build-system]
requires = ["setuptools >= 75.6"]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
[tool.mypy]
files = [
"wallee",
"tests"
]
# TODO: enable "strict" once all these individual checks are passing
# strict = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_equality = true
strict_concatenate = true
check_untyped_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_any_generics = true
#disallow_untyped_calls = true
#disallow_incomplete_defs = true
#disallow_untyped_defs = true
#
#no_implicit_reexport = true
#
#warn_return_any = true