22 lines
475 B
TOML
22 lines
475 B
TOML
|
[tool.poetry]
|
||
|
name = "changelog"
|
||
|
version = "0.1.0"
|
||
|
description = "A tool for managing SUSE release notes changelogs"
|
||
|
authors = ["Lukáš Kucharczyk <lukas.kucharczyk@suse.com>"]
|
||
|
license = "GPL"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
changelog = 'changelog:changelog.cli'
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.10"
|
||
|
click = "^8.1.3"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
black = "^22.3.0"
|
||
|
mypy = "^0.950"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|