-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.34 KB
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
[tool.poetry]
name = "plugable"
version = "0.0.0"
description = "A framework for writing extensible Python components"
readme = "README.md"
authors = ["Jacob Neil Taylor <me@jacobtaylor.id.au>"]
license = "MIT"
packages = [
{ include = "plugable", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
pytest-cov = "^3.0.0"
coverage = {extras = ["toml"], version = "^6.4.4"}
flake8 = "^5.0.4"
mypy = "^0.971"
mock = "^4.0.3"
black = "^22.6.0"
pytest = "^7.1.2"
ipython = "^8.4.0"
tox = "^3.25.1"
tox-poetry = "^0.4.1"
types-setuptools = "^65.1.0"
types-mock = "^4.0.15"
Flake8-pyproject = "^1.1.0"
tox-gh-actions = "^2.9.1"
semver = "^2.13.0"
mutmut = "^2.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line_length = 88
include = '\.pyi?$'
[tool.coverage.run]
branch = true
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"@(abc.)?abstractmethod",
]
ignore_errors = true
[tool.coverage.html]
directory = "test-reports/coverage_html"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"