[tool.poetry] name = "mnpw" version = "0.1.0-dev" description = "My Nagios plugin wrapper" authors = ["Adar Nimrod "] license = "MIT" homepage = "https://git.shore.co.il/shore/mnpw" repository = "https://git.shore.co.il/shore/mnpw" classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Topic :: System :: Monitoring", "Topic :: System :: Systems Administration", "Topic :: Utilities", ] include = [ "*.rst", "LICENSE.txt", ] exclude = [ "*.yaml", "*.yml", ] [tool.poetry.dependencies] python = "^3.6.1" requests = "^2.25.1" [tool.poetry.dev-dependencies] pre-commit = "^2.13.0" pyinstaller = "^4.3" pytest = "^6.2.4" [tool.poetry.scripts] mnpw = "mnpw:main" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.isort] profile = "black"