-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
95 lines (81 loc) · 1.9 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
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "django-getpaid-payu"
version = "0" # placeholder, version governed by plugin
description = "Django-GetPaid plugin for PayU service."
authors = ["Dominik Kozaczko <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/django-getpaid/django-getpaid-payu"
packages = [
{ include = "getpaid_payu" }
]
[tool.poetry.dependencies]
python = "^3.7"
django-getpaid = "^2.3.0"
swapper = "^1.1.2"
typing-extensions = "^3.10.0"
pytest = { version = "^6.2.4", optional = true }
codecov = { version = "^2.1.11", optional = true }
coverage = { version = "^5.5", optional = true }
requests = { version = "^2.25.1", optional = true }
requests-mock = { version = "^1.9.3", optional = true }
pytest-cov = { version = "^2.12.1", optional = true }
pytest-django = { version = "^4.4.0", optional = true }
pytest-factoryboy = { version = "^2.1.0", optional = true }
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.16.0"
factory-boy = "^3.2.1"
black = "^21.12-beta.0"
tox = "^3.24.4"
ipdb = "^0.13.9"
[tool.poetry.group.test.dependencies]
pytest = "^6.2.4"
codecov = "^2.1.11"
coverage = "^5.5"
requests = "^2.25.1"
requests-mock = "^1.9.3"
pytest-cov = "^2.12.1"
pytest-django = "^4.4.0"
[tool.poetry.extras]
test = [
"pytest",
"codecov",
"coverage",
"requests",
"requests-mock",
"pytest-cov",
"pytest-django",
"pytest-factoryboy"
]
[tool.black]
line-length = 88
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.cache
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| __pycache__
| _build
| buck-out
| build
| dist
| docs
| migrations
)/
)
'''
[tool.isort]
profile = "black"
[tool.poetry-version-plugin]
source = "init"
[build-system]
requires = ["poetry-core>=1.1.0a6"]
build-backend = "poetry.core.masonry.api"