-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (42 loc) · 852 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| (.*)/migrations
| dist
| \{\{cookiecutter\.project_slug\}\}
)/
)
'''
[bumpver]
current_version = "2024.07.19"
version_pattern = "YYYY.0M.0D[-TAG]"
commit = false
tag = false
push = false
[bumpver.file_patterns]
"package.json" = [
'"version": "{version}"',
]
"package-lock.json" = [
'"version": "{version}"',
]
"pyproject.toml" = [
'current_version = "{version}"',
# 'version = "{version}"',
]