forked from mamba-org/quetz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (47 loc) · 1.2 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
[build-system]
requires = ["setuptools>=41", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_mode="strict"
[tool.black]
skip-string-normalization = true
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[tool.jupyter-releaser.options]
check-imports = ["quetz"]
[tool.check-wheel-contents]
ignore = ["W004"]
[tool.tbump.version]
current = "0.7.0"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[[tool.tbump.field]]
name = "channel"
default = ""
[[tool.tbump.field]]
name = "release"
default = ""
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "quetz/_version.py"
version_template = '({major}, {minor}, {patch}, "{channel}", "{release}")'
[tool.pyright]
include = ["quetz"]
reportGeneralTypeIssues = false
reportMissingImports = true
reportMissingModuleSource = true
reportMissingTypeStubs = false
reportOptionalMemberAccess = true
reportOptionalOperand = true
reportOptionalSubscript = true
reportPrivateImportUsage = true
reportUnboundVariable = true
reportUndefinedVariable = false
venv = ".venv"
venvPath= "."