-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (52 loc) · 1.35 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
[build-system]
requires = ["setuptools"]
[project]
name = "pyflowlauncher"
authors = [
{name = "William McAllister", email = "[email protected]"}
]
version = '0.9.1'
description = "Python library to help build Flow Launcher plugins."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed"
]
dependencies = [
'typing_extensions>=4.8.0; python_version < "3.11"'
]
[project.optional-dependencies]
all = ['typing_extensions>=4.8.0']
[tool.setuptools]
packages = ["pyflowlauncher"]
[tool.setuptools.package-data]
"pyflowlauncher" = ["py.typed"]
[tool.bumpversion]
current_version = "0.9.1"
parse = """(?x)
(?P<major>[0-9]+)
\\.(?P<minor>[0-9]+)
\\.(?P<patch>[0-9]+)
(?:
-(?P<label>dev|rc|release)
(?:.(?P<label_n>[0-9]+))?
)?
"""
serialize = [
"{major}.{minor}.{patch}-{label}.{label_n}",
"{major}.{minor}.{patch}",
]
search = "version = '{current_version}'"
replace = "version = '{new_version}'"
tag = true
allow_dirty = false
commit = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"