-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
71 lines (59 loc) · 1.26 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
[tool.poetry]
name = "ipytest"
version = "0.14.2"
authors = ["Christopher Prohm <[email protected]>"]
description = "Unit tests in IPython notebooks"
readme = "Readme.md"
license = "MIT"
include = ["License.md"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.8, <4"
packaging = "*"
ipython = "*"
pytest = ">=5.4"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
nbval = "^0.10.0"
ruff = "^0.2.0"
pytest-asyncio = "^0.23.0"
pytest-cov = "^5.0.0"
build = "^1.0"
poetry = "^1.7"
poetry-plugin-export = "^1.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
repository = "https://github.com/chmp/ipytest"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"COM",
"C4",
"PT",
"Q",
"RET",
"SIM",
"ERA",
"RUF",
]
ignore = [
"E501",
"SIM117",
# poetry uses a non-standard pyproject.toml format
"RUF200",
# trailing comma rule may conflict with the formatter
"COM812",
# wrong types in pytest.mark.parametrize
"PT006",
]