-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.46 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
[tool.poetry]
name = "qpay-python"
version = "0.0.1"
description = "QPay v2 SDK client for Python projects"
authors = ["khasbilegt <khasbilegt.ts@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/khasbilegt/qpay-python"
repository = "https://github.com/khasbilegt/qpay-python"
keywords = ["python", "qpay", "sdk", "payment", "qr", "finance"]
classifiers = [
"Framework :: Pydantic",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed"
]
packages = [
{ include = "qpay"},
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
pydantic = "^2.7.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.1"
pre-commit = "^3.5.0"
pytest = "^7.4.3"
requests-mock = "^1.12.1"
pytest-cov = "^5.0.0"
mypy = "^1.9.0"
types-requests = "^2.31.0.20240406"
[[tool.poetry.source]]
name = "gitlab"
url = "https://gitlab.com/api/v4/projects/52778657/packages/pypi"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"