Repository URL to install this package:
|
Version:
4.1.0 ▾
|
sincpro-payments-sdk
/
pyproject.toml
|
|---|
[tool.poetry]
name = "sincpro-payments-sdk"
version = "4.1.0"
description = "Agnostic SDK for payments like cybersource, Paypal and local payments"
authors = ["Gutierrez, Andres <andru1236@gmail.com>"]
repository = "https://github.com/Sincpro-SRL/sincpro_payments_sdk/"
homepage = "https://github.com/Sincpro-SRL/sincpro_payments_sdk/"
documentation = "https://www.notion.so/sincpro/"
license = "Sincpro S.R.L."
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.5"
pydantic = "^2.12.5"
sincpro-framework = "^3.0.6"
[tool.poetry.group.dev.dependencies]
isort = "^7.0.0"
black = "^25.12.0"
pytest = "^9.0.2"
ipython = "^9.9.0"
autoflake = "^2.3.1"
jupyterlab = "^4.5.1"
icecream = "^2.1.8"
pyright = "^1.1.407"
mkdocs = "^1.6.1"
mkdocs-material = "^9.7.1"
mkdocstrings = {extras = ["python"], version = "^1.0.0"}
pymdown-extensions = "^10.20"
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/sincpro/"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint]
disable = [
"missing-docstring",
"fixme",
"C0103",
"C0301",
"R0903",
"C0413",
"W1203",
"I1101",
"W1309",
"R0902",
"C0415",
]
[tool.black]
line-length = 94