-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.17 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
[tool.poetry]
name = "changeloggh"
version = "1.1.0"
description = "changeloggh is a command line tool that generates changelog files for github"
authors = ["Saúl Piña <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sauljabin/changeloggh"
repository = "https://github.com/sauljabin/changeloggh"
keywords = ["changelog", "changeloggh"]
classifiers = [
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Unix"
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.10"
cloup = "^3"
rich = "^13"
jinja2 = "^3"
semver = "^3"
[tool.poetry.dev-dependencies]
ruff = "*"
black = "*"
coverage = {extras = ["toml"], version = "*"}
toml = "*"
pre-commit = "*"
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[tool.coverage.run]
source = ["changeloggh"]
branch = true
omit = ["*tests/*", "*scripts/*", "*__init__.py", "changeloggh/__main__.py"]
[tool.coverage.report]
exclude_lines = ['if __name__ == "__main__":']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
changeloggh = "changeloggh.cli:main"
clgh = "changeloggh.cli:main"