-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Adyen"
version = "15.0.1"
description = "Adyen Python Api"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Adyen", email = "support@adyen.com"},
]
maintainers = [
{name = "Adyen", email = "support@adyen.com"},
]
keywords = ["payments", "adyen", "fintech"]
dependencies = ["pydantic>=2.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
requests = ["requests>=2.25.0"]
pycurl = ["pycurl>=7.43.0"]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"mock>=4.0.0",
"requests>=2.25.0",
]
dev = [
"ruff>=0.4.4",
"pre-commit>=3.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py38"
exclude = [
".git",
".venv",
"build",
"dist",
".egg-info",
"Adyen.egg-info",
"__pycache__",
".tox",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"C4", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # Line too long (handled by formatter)
"W292", # Blank line at end of file
]
[tool.ruff.lint.isort]
known-first-party = ["Adyen"]
[tool.coverage.run]
source = ["Adyen/"]