Magnus Walbeck
5548774c17
Some checks reported errors
continuous-integration/drone/tag Build was killed
25 lines
618 B
TOML
25 lines
618 B
TOML
[tool.poetry]
|
|
name = "genhost"
|
|
version = "0.1.0"
|
|
description = "Generate a random hostname based on a wordlist"
|
|
authors = ["Magnus Walbeck <magnus.walbeck@walbeck.it>"]
|
|
readme = "README.md"
|
|
repository = "https://git.walbeck.it/walbeck-it/genhost"
|
|
packages = [{ include = "genhost" }]
|
|
|
|
[tool.poetry.scripts]
|
|
genhost = "genhost.main:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pylint = "^2.15.8"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pylint.'MESSAGES CONTROL']
|
|
good-names = "i,j,k,ex,Run,_,e,r,f"
|
|
disable = "C0116,C0114"
|