-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.29 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
[tool.black]
line-length = 88
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.cache
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| __pycache__
| _build
| buck-out
| build
| dist
| docs
| migrations
)/
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = false
line_length = 88
known_first_party = ["getpaid_przelewy24"]
known_third_party = ["getpaid"]
[tool.poetry]
name = "Getpaid-Przelewy24"
version = "0.1.0"
description = "django-getpaid processor for Przelewy24"
authors = ["Konrad Lyda <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
django-getpaid = "^2.2.0"
requests = "^2.23.0"
swapper = "^1.1.2"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
pre-commit = "^2.1.1"
factory-boy = "^2.12.0"
black = "^19.10b0"
tox = "^3.14.5"
ipdb = "^0.13.2"
pytest = {version = "^5.3.5"}
codecov = {version = "^2.0.16"}
coverage = {version = "^5.0.3"}
requests-mock = {version = "^1.7.0"}
pytest-cov = {version = "^2.8.1"}
pytest-django = {version = "^3.8.0"}
[tool.poetry.extras]
test = ["pytest", "codecov", "coverage", "request-mock", "pytest-cov", "pytest-django"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"