-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (46 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
59 lines (46 loc) · 1.2 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
[tool.poetry]
name = "GlobalPayments.Api"
version = "2.0.7"
description = "Global Payments Python SDK for integrating with Global Payments merchant services APIs"
authors = ["Global Payments <EntApp_DevPortal@e-hps.com>"]
license = "LICENSE.md"
readme = "README.txt"
homepage = "https://developer.globalpay.com/"
packages = [
{ include = "globalpayments" },
]
[tool.poetry.dependencies]
python = "^3.11"
xmltodict = "^0.14.2"
jsonpickle = "^4.0.1"
enum34 = "^1.1.10"
urllib3 = "^2.3.0"
certifi = "^2024.12.14"
pyopenssl = "^24.3.0"
idna = "^3.10"
dateparser = "^1.2.1"
requests = "^2.32.3"
[tool.poetry.scripts]
i-tests = "tests.runner:run_tests"
portico-tests = "tests.runner:portico_tests"
gpapi-tests = "tests.runner:gpapi_tests"
formatter = "scripts:run_black"
typecheck = "scripts:run_pyright"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pyright = "^1.1.397"
[tool.pyright]
include = ["globalpayments", "tests"]
exclude = [
"**/__pycache__",
"**/*.bak",
]
reportMissingImports = true
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
reportOptionalMemberAccess = "none"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"