[tool.poetry] name = "dangerzone" version = "0.3" description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF" authors = ["Micah Lee "] license = "MIT" [tool.poetry.dependencies] python = ">=3.7,<3.10" click = "*" appdirs = "*" requests = "*" macholib = "*" termcolor = "*" PySide2 = "5.15.2" pywin32 = {version = "*", platform = "win32"} wmi = {version = "*", platform = "win32"} pyxdg = {version = "*", platform = "linux"} strip-ansi = {version = "*", platform = "darwin"} colorama = "^0.4.4" psutil = "^5.8.0" [tool.poetry.dev-dependencies] pyinstaller = "*" setuptools = {version = "*", platform = "win32"} black = "^21.5b2" [tool.poetry.scripts] dangerzone = 'dangerzone:main' dangerzone-container = 'dangerzone:main' dangerzone-cli = 'dangerzone:main' [build-system] requires = ["poetry>=1.1.4"] build-backend = "poetry.masonry.api"