-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
33 lines (28 loc) · 929 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
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wibble"
authors = ["Joe Schmoe"]
maintainers = ["Joe Schmoe"]
description = "Minimal python project that exposes a commandline feature"
readme = "README.md"
version = "0.0.6"
keywords = ["example"]
license = "GPL-3"
classifiers = [ "Programming Language :: Python :: 3", ]
homepage = "https://github.com/retospect/wibble"
repository = "https://github.com/retospect/wibble"
[tool.poetry.scripts]
# fafa: cmd; wibble: package; wobble: .py; warble: method
fafa = "wibble.wobble:wobble"
[tool.bumpver]
current_version = "0.0.6"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/wibble/__init__.py" = ["{version}"]