-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
86 lines (72 loc) · 1.91 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
85
86
[tool.poetry]
name = "changy"
version = "0.4.3"
description = "Simplest changelog manager, oriented to human editing, not to special message formatting in commits and tags.."
readme = "README.md"
repository = "https://github.com/Tiendil/changy"
authors = ["Aliaksei Yaletski (Tiendil) <a.eletsky@gmail.com>"]
license = "BSD-3-Clause"
keywords = ["changelog", "release-notes", "release-automation", "release-management", "changelog-generator", "changelog-formatter"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython"]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = ">=2.5"
pydantic-settings = ">=2.1"
jinja2 = ">=3.1"
typer = ">=0.9"
[tool.poetry.dev-dependencies]
pytest = "7.4.*"
pytest-asyncio = "0.21.*"
pytest-mock = "3.11.*"
isort = "5.13.*"
black = "24.2.*"
flake8 = "7.0.*"
flake8-docstrings = "1.7.*"
flake8-functions = "0.0.*"
flake8-annotations-complexity = "0.0.*"
flake8-cognitive-complexity = "0.1.*"
flake8-pytest = "1.4.*"
flake8-bandit = "4.1.*"
flake8-absolute-import = "1.0.*"
flake8-print = "5.0.*"
flake8-pyproject = "1.2.*"
flake8-eradicate = "1.5.*"
autoflake = "2.3.*"
mypy = "1.8.*"
[tool.poetry.scripts]
changy = "changy.cli.__main__:app"
[tool.isort]
profile = "black"
line_length = 119
[tool.black]
line-length = 119
[tool.autoflake]
in_place = true
remove_all_unused_imports = true
remove_unused_variables = true
recursive = true
[tool.flake8]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D200",
"D400",
"S101",
"S311",
"W503",
"CFQ004",
"E203", # blake formats [x:y] with spaves
]
max-line-length = 119