-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (34 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
44 lines (34 loc) · 747 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.coverage.run]
branch = true
parallel = true
source = ["fxp", "tests"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "def __repr__"]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.pylint."MESSAGE CONTROL"]
disable = "fixme"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = "tests"
[tool.tbump]
github_url = "https://github.com/demberto/fxp/"
[tool.tbump.version]
current = "0.1.1"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "VERSION"