-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (113 loc) · 3.46 KB
/
Copy pathpyproject.toml
File metadata and controls
122 lines (113 loc) · 3.46 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["setuptools>=80.0,<90.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Steam-Stats"
version = "1.4.0"
authors = [{ name = "Nicco", email = "github.giving328@passmail.com" }]
description = "A python project to get the stats of your Steam account and display them in your GitHub profile."
requires-python = ">= 3.8"
keywords = [
"steam",
"github",
"stats",
"api",
"automation",
"games",
"gaming",
"cards",
"playwright",
]
readme = "README.md"
license = "GPL-3.0"
license-files = ["LICENSE"]
dependencies = [
"bs4==0.0.2",
"DateTime==5.5",
"playwright==1.58.0",
"PyGithub==2.9.0",
"python-semantic-release==10.5.3",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Monitoring",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/Nicconike/Steam-Stats"
Changelog = "https://github.com/Nicconike/Steam-Stats/blob/master/CHANGELOG.md"
Documentation = "https://nicconike.github.io/Steam-Stats/"
Wiki = "https://github.com/Nicconike/Steam-Stats/wiki"
Issues = "https://github.com/Nicconike/Steam-Stats/issues"
[project.optional-dependencies]
test = [
"pytest-asyncio==1.2.0",
"pytest-cov==7.1.0",
"pytest-mock==3.15.1",
"requests-mock==1.12.1",
]
dev = [
"build==1.4.2",
"bandit==1.8.6",
"pipdeptree==2.28.0",
"pylint==3.3.9",
"python-dotenv==1.2.1",
"twine==6.2.0",
]
docs = [
"mkdocs-git-revision-date-localized-plugin==1.5.0",
"mkdocs-material==9.7.6",
"mkdocs-mermaid2-plugin==1.2.3",
"mkdocs-minify-plugin==0.8.0",
"mkdocstrings-python==1.18.2",
]
[tool.setuptools.packages.find]
where = ["api"]
[tool.semantic_release]
version_variables = ["api/main.py:__version__"]
version_toml = ["pyproject.toml:project.version"]
version_source = "tag"
commit_message = "chore(release): Version Release v{version}"
tag_format = "v{version}"
logging_use_named_masks = true
commit_parser = "conventional"
commit_parser_options = { parse_squash_commits = true, ignore_merge_commits = true }
[tool.semantic_release.remote]
type = "github"
token = { env = "GH_TOKEN" }
[tool.semantic_release.changelog]
default_templates.changelog_file = "CHANGELOG.md"
mode = "update"
insertion_flag = "<!-- CHANGELOG -->"
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''refactor(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''Merged? .*''',
'''Initial Commit*''',
]
[tool.semantic_release.changelog.environment]
trim_blocks = true
[tool.semantic_release.publish]
upload_to_vcs_release = true
upload_to_pypi = true
dist_glob_patterns = ["dist/*"]