-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.67 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "paylink"
version = "0.2.0"
description = "Official server-side Python SDK for the PayLink / GetPayIn payment integration API (checkouts, payment operations, card tokens, recurring mandates, webhook verification)."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{ name = "GetPayIn", email = "tech@getpayin.com" }]
keywords = ["paylink", "getpayin", "payments", "payment-gateway", "checkout", "webhooks", "cybersource"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/GetPayin-Tech/paylink-python"
Documentation = "https://pay.getpayin.com/docs/payment_integration/index.html"
Repository = "https://github.com/GetPayin-Tech/paylink-python"
Changelog = "https://github.com/GetPayin-Tech/paylink-python/blob/main/CHANGELOG.md"
Issues = "https://github.com/GetPayin-Tech/paylink-python/issues"
[project.optional-dependencies]
dev = ["pytest>=7", "mypy>=1.0", "ruff>=0.1"]
[tool.hatch.build.targets.wheel]
packages = ["src/paylink"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.8"
strict = true
files = ["src/paylink"]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]