-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.17 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
[tool.poetry]
authors = ["Scarlett Samantha Verheul <scarlett.verheul@gmail.com>"]
dependencies.python = "^3.12"
description = "A Python project for OpenCiv game"
license = "MIT"
name = "openciv"
[tool.ruff]
ignore = ["E501", "F841", "E721"]
line-length = 120
select = ["E", "W", "F"]
[tool.semantic_release]
changelog_function = "changelog.py:openciv_changelog"
commit_parser = "emoji"
github_release = false
version_source = "commit"
version_variables = ["openciv/version.py:__version__"]
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
template_dir = "templates"
[tool.semantic_release.commit_parser_options]
major_tags = [":boom:"]
minor_tags = [
":sparkles:",
":children_crossing:",
":lipstick:",
":iphone:",
":egg:",
":chart_with_upwards_trend:",
]
patch_tags = [
":ambulance:",
":lock:",
":bug:",
":zap:",
":goal_net:",
":alien:",
":wheelchair:",
":speech_balloon:",
":mag:",
":apple:",
":penguin:",
":checkered_flag:",
":robot:",
":green_apple:",
]
[semantic_release.branches.main]
match = "(main|master)"
prerelease = false
prerelease_token = "rc"
[tool.pymarkdownlnt]
log.level = "INFO"
log.stack-trace = true
rules = ["MD013"]