-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (71 loc) · 1.92 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
[tool.poetry]
name = "merchants"
version = "2024.9.16"
description = "A unified payment processing toolkit for Starlette/FastAPI applications"
authors = ["Mario Hernandez <mariofix@proton.me>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/mariofix/merchants"
homepage = "https://mariofix.github.io/merchants"
keywords = [
"payment",
"psp",
"payment-gateway",
"payment-integration",
"payment-processing",
"payment-hub",
"payment-platform",
"fastapi",
"starlette",
]
packages = [{ include = "merchants" }, { include = "alembic" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.10"
thankyou = "^0.0.3"
pendulum = "^3.0.0"
httpx = "^0.27.0"
python-slugify = "^8.0.4"
alembic = "^1.13.2"
sqlalchemy = "^2.0.35"
sqlalchemy-utils = "^0.41.2"
fastapi = { extras = ["all"], version = "^0.115.0" }
starlette-admin = { version = "^0.14.1" }
stripe = { version = "^11.1.0", optional = true }
[tool.poetry.extras]
stripe = ["stripe"]
all = ["stripe"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
coverage = "^7.6.1"
black = "^24.8.0"
pre-commit = "^4.0.0"
rich = "^13.7.1"
mkdocs-material = "^9.5.35"
mkdocstrings = { version = "^0.26.1", extras = ["python"] }
fastapi-debug-toolbar = "^0.6.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
python_files = ["test*.py"]
[tool.black]
line-length = 119
target-version = ['py310']
include = '\.pyi?$'
[tool.ruff]
line-length = 119
target-version = "py310"
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101", "B601"]