-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.28 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
[tool.poetry]
name = "yamkix"
version = "0.0.0-dev"
description = "An opinionated yaml formatter based on ruamel.yaml"
authors = ["Christophe Furmaniak <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/looztra/yamkix"
classifiers = ["Topic :: Utilities"]
packages = [{ include = "yamkix", from = "src" }]
[tool.poetry.dependencies]
python = ">3.8.1"
ruamel-yaml = ">0.17.27"
[tool.poetry.group.dev.dependencies]
tox = "^3.27"
pylint = "^2.15"
black = "^22.10"
isort = "^5.10"
coverage = "^6.5"
pytest = "^7.2"
pytest-mock = "^3.10"
freezegun = "^1.2"
flake8 = "^6.0.0"
flake8-bugbear = "^22.12"
flake8-colors = "^0.1"
flake8-docstrings = "^1.6"
flake8-typing-imports = "^1.14"
pep8-naming = "^0.13"
pre-commit = "^3.3.3"
[tool.poetry.scripts]
yamkix = "yamkix.__main__:main"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
metadata = false
dirty = true
bump = true
[tool.poetry-dynamic-versioning.substitution]
files = ["src/yamkix/__init__.py"]
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
line_length = 119
[tool.black]
extend-exclude = ".venv"
line_length = 119
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"