-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.35 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
[tool.poetry]
name = "get-release-version-action"
version = "5.0.0"
description = "A GitHub Action to determine the next version by checking the commit history for conventional commits with support for hotfix changes."
authors = ["wemogy <hello@spaceblocks.cloud>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/wemogy/get-release-version-action"
repository = "https://github.com/wemogy/get-release-version-action"
documentation = "https://github.com/wemogy/get-release-version-action"
[tool.poetry.dependencies]
python = "^3.12"
PyYAML = "^6.0.1"
semver = "^3.0.2"
python-semantic-release = "^9.5.0"
GitPython = "^3.1.43"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
mypy = "^1.9.0"
flake8 = "^7.0.0"
flake8-pyproject = "^1.2.3"
types-pyyaml = "^6.0.12.20240311"
pytest = "^8.1.1"
assertpy = "^1.1"
pydevd-pycharm = ">=241.14494.241,<241.14495.0"
[tool.pylint.format]
max-line-length = 120
[tool.pylint.message-control]
disable = [
"too-many-return-statements",
"too-many-instance-attributes"
]
[tool.flake8]
max-line-length = 120
disable-noqa = true
per-file-ignores = [
"__init__.py:F401",
"test_*.py:F401,F811"
]
[tool.mypy]
mypy_path = ".mypy_stubs"
strict = true
[[tool.mypy.overrides]]
module = "assertpy.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"