[tool.poetry] name = "centpkg" version = "0.0.1" description = "centpkg is a centos cli implementation of rpkg" authors = ["lrossett "] license = "GPL-2.0-or-later" packages = [ { include = "centpkg", from = "src" }, ] [tool.poetry.dependencies] python = "^3.6" rpkg = { git = "https://pagure.io/rpkg.git" } rpm = "^0.0.2" [tool.poetry.dev-dependencies] pytest = "^6.0.1" pytest-sugar = "^0.9.4" [tool.poetry.scripts] clirun = 'centpkg.cli:run' [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"