-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.52 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
[tool.poetry]
name = "changelogged"
version = "0.13.0"
description = "Automated management of your changelog and other versioned files, following the principles of Keep a Changelog and Semantic Versioning."
license = "MIT"
authors = ["award28 <[email protected]>"]
maintainers = ["award28 <[email protected]>"]
readme = "docs/README.md"
repository = "https://github.com/award28/changelogger"
packages = [
{ include = "changelogger" },
]
include = [
{ path = "templates" },
]
keywords = ["changelog", "version", "semver", "changelogger", "changelogged"]
[tool.poetry.scripts]
changelogger = "changelogger.__main__:app"
cl = "changelogger.__main__:app"
[tool.poetry.urls]
"Changelog" = "https://github.com/award28/changelogger/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/award28/changelogger/issues"
"Road Map" = "https://github.com/users/award28/projects/2"
[tool.poetry.dependencies]
python = "^3.10"
typer = "0.7.0"
rich = "13.3.2"
pydantic = "1.10.6"
semver = "2.13.0"
jinja2 = "3.1.2"
pyyaml = "6.0"
gitpython = "3.1.31"
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.1"
freezegun = "^1.2.2"
pytest = "^7.2.2"
coverage = "^7.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.pycln]
all = true
[tool.isort]
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.coverage]
[tool.coverage.run]
source = ["changelogger"]