-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 892 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Mailboxdb"
version = "0.5.2"
description = "Fetch emails from a mailbox and store them in a sqlite database"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["peewee~=3.18"]
[project.scripts]
mailboxdb = "mailboxdb.run:main"
mailboxdb_file = "mailboxdb.run:main_file"
[project.optional-dependencies]
dev = ["bumpver"]
tests = []
[tool.bumpver]
current_version = "0.5.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} → {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['version = "{version}"']
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]