forked from fixmycode/pykhipu
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (80 loc) · 2.05 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
[project]
name = "khipu-tools"
version = "2025.1.0"
description = "Set de herramientas para operar con la APIv3 de Khipu"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Mario Hernandez", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
]
keywords = [
"khipu",
"pagos",
"transferencias",
"payment",
"subscription",
"subscripcion",
]
dependencies = [
"python-dateutil",
"python-slugify>=8.0.4",
"requests>=2.32.3",
"typing-extensions>=4.12.2",
]
[project.urls]
Repository = "http://github.com/mariofix/khipu-tools"
Homepage = "http://mariofix.github.io/khipu-tools"
Documentation = "http://mariofix.github.io/khipu-tools"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pylint",
"mock",
"pre-commit>=4.0.1",
"flask>=3.1.0",
"black>=24.10.0",
"mkdocs-material>=9.5.49",
"mkdocstrings[python]>=0.27.0",
"pytest>=8.3.4",
"coverage>=7.6.9",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
]
[tool.black]
line-length = 119
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 119
multi_line_output = 5
py_version = 39
[tool.autopep8]
max_line_length = 119
ignore = "E501,W6" # or ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:", "# noqa", "# nosec"]
[tool.pytest.ini_options]
addopts = [
"--cov=khipu_tools",
"--cov-report=term-missing:skip-covered",
"--no-cov-on-fail",
"--color=yes",
]
testpaths = "tests"
pythonpath = "."