forked from gopaycommunity/gopay-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.12 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
[tool.poetry]
authors = ["GoPay <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "GoPay's Python SDK for Payments REST API"
documentation = "https://doc.gopay.com"
homepage = "https://github.com/gopaycommunity/gopay-python-api"
keywords = ["gopay", "payments", "sdk", "rest", "api"]
license = "MIT"
name = "gopay"
packages = [{include = "gopay"}]
readme = "README.md"
repository = "https://github.com/gopaycommunity/gopay-python-api"
version = "2.2.1"
[tool.poetry.dependencies]
deprecated = "^1.2.14"
pydantic = "^2.8.2"
python = "^3.9"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.3,<25.0"
deprecated = "^1.2.14"
flake8 = "^7.1.1"
isort = "^5.12.0"
pytest = "^8.3.3"
pytest-coverage = "^0.0"
pytest-dotenv = "^0.5.2"
[tool.pytest.ini_options]
addopts = [
"--log-cli-level=INFO",
"--cov=gopay",
]
env_files = [
"tests/.sandbox.env",
]
[tool.isort]
profile = "black"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]