-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.53 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
[project]
name = "python_appimage"
authors = [
{ name="Valentin Niess", email="valentin.niess@gmail.com" },
]
dynamic = ["version"]
description = "Appimage releases of Python"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"requests",
"setuptools",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Operating System :: POSIX :: Linux",
]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
[project.scripts]
python-appimage = "python_appimage.__main__:main"
[project.urls]
homepage = "https://github.com/niess/python-appimage"
documentation = "https://python-appimage.readthedocs.io"
download = "https://pypi.python.org/pypi/python-appimage"
source = "https://github.com/niess/python-appimage"
issues = "https://github.com/niess/python-appimage/issues"
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["python_appimage*"]
[tool.setuptools.dynamic]
version = {attr = "python_appimage.__version__"}
[tool.bumpversion]
current_version = "1.4.5"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
tag = false
allow_dirty = false
commit = true
message = "Bump version: v{new_version}"
commit_args = ""
[[tool.bumpversion.files]]
filename = "python_appimage/version.py"