-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (32 loc) · 1.26 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
[tool.poetry]
name = "pypayment"
version = "1.8.0"
description = "Payment Providers API Wrapper"
authors = ["Tim <herew26@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Typing :: Typed",
]
keywords = ["payment", "api", "wrapper", "payment-gateway", "payment-provider"]
homepage = "https://github.com/TimNekk/pypayment"
documentation = "https://pypayment.readthedocs.io/"
repository = "https://github.com/TimNekk/pypayment.git"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.34"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "D", "I", "W", "C90", "UP", "YTT", "ANN", "ASYNC", "S", "BLE", "B", "COM", "C4", "EXE", "ISC", "ICN", "LOG", "G", "PIE", "PYI", "PT", "Q", "RET", "SLF", "SLOT", "SIM", "TID", "TCH", "INT", "ARG", "PTH", "TD", "PD", "PL", "FLY", "NPY", "PERF", "RUF"]
ignore = ["D102", "D100", "D104", "D203", "D213", "ANN101", "ANN102", "B027", "TD002", "TD003", "PLR0913", "RUF012"]