-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.53 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "dashing"
authors = [{ name = "Federico Ceratto", email = "federico@debian.org" }]
license = { file = "LICENSES/LGPL-3.0-or-later.txt" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"]
dynamic = ["version", "description"]
dependencies = ["blessed~=1.20"]
[project.urls]
Home = "https://github.com/FedericoCeratto/dashing"
[project.optional-dependencies]
dev = [
"black~=24.0",
"flake8~=7.0",
"pre-commit~=3.0",
"isort~=5.12",
"flake8-pyproject~=1.2",
"bump-my-version~=0.18",
"dashing[test,docs]"
]
docs = [
"sphinx~=7.0",
"furo~=2024.1"
]
test = [
"pytest~=8.0",
"pyte~=0.8",
"pexpect~=4.9"
]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
[tool.bumpversion]
current_version = "0.1.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "__version__ = \"{current_version}\""
replace = "__version__ = \"{new_version}\""
regex = false
ignore_missing_version = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = "--no-verify"
[[tool.bumpversion.files]]
filename = "dashing/__init__.py"