-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (73 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools ~= 75.8"]
build-backend = "setuptools.build_meta"
[project]
name = "Steam-Stats"
authors = [
{ name = "Nicco", email = "38905025+Nicconike@users.noreply.github.com" },
]
dynamic = ["version"]
dependencies = [
"bs4==0.0.2",
"DateTime==5.5",
"playwright==1.49.1",
"PyGithub==2.5.0",
"python-semantic-release==9.17.0",
]
requires-python = ">= 3.8"
readme = "README.md"
license = { file = "LICENSE" }
[project.urls]
changelog = "https://github.com/Nicconike/Steam-Stats/blob/master/CHANGELOG.md"
documentation = "https://github.com/Nicconike/Steam-Stats/blob/master/README.md"
wiki = "https://github.com/Nicconike/Steam-Stats/wiki"
[project.optional-dependencies]
test = [
"pytest-asyncio==0.25.3",
"pytest-cov==6.0.0",
"pytest-mock==3.14.0",
"requests-mock==1.12.1",
]
dev = ["bandit==1.8.2", "pipdeptree==2.25.0", "pylint==3.3.4"]
[tool.semantic_release]
version_variables = ["api/main.py:__version__"]
branch = "master"
commit_message = "chore: Version Release v{version}"
tag_format = "v{version}"
[tool.semantic_release.branches]
main = { match = "master", prerelease_token = "rc", prerelease = false }
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
"revert",
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
default_bump_level = 0
[tool.semantic_release.remote]
type = "github"
token = { env = "GH_TOKEN" }
[tool.semantic_release.publish]
upload_to_vcs_release = true
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = []
[tool.semantic_release.changelog.environment]
trim_blocks = true
[tool.semantic_release.plugins]
verify_conditions = ["@semantic-release/git", "@semantic-release/github"]
analyze_commits = ["@semantic-release/commit-analyzer"]
generate_notes = ["@semantic-release/release-notes-generator"]
prepare = ["@semantic-release/changelog", "@semantic-release/git"]
publish = ["@semantic-release/github"]
success = ["@semantic-release/github"]
fail = ["@semantic-release/github"]