-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.51 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
[tool.poetry]
name = "pytest-xfaillist"
version = "0.1.1"
description = "Maintain a xfaillist in an additional file to avoid merge-conflicts."
homepage = "https://github.com/projectcaluma/pytest-xfaillist"
repository = "https://github.com/projectcaluma/pytest-xfaillist"
authors = ["Adfinis AG"]
license = "AGPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Framework :: Pytest",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[tool.poetry.plugins.pytest11]
pytest-xfaillist = "pytest_xfaillist.hooks"
[tool.poetry.dependencies]
python = "^3.7"
pytest = "^6.2.2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.2.2"
pdbpp = "^0.10.2"
isort = "^5.7.0"
flake8 = "^3.8.4"
flake8-bugbear = "^21.3.1"
flake8-debugger = "^4.0.0"
flake8-docstrings = "^1.5.0"
flake8-isort = "^4.0.0"
flake8-string-format = "^0.3.0"
flake8-tuple = "^0.4.1"
python-language-server = "^0.36.2"
mypy = "^0.812"
pip = "^21.0.1"
keyring = "^23.0.0"
SecretStorage = "^3.3.1"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88
# No flake8 pyproject support yet, please edit .flake8
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"