mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[tool.poetry]
|
|
name = "dangerzone"
|
|
version = "0.2.1"
|
|
description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF"
|
|
authors = ["Micah Lee <micah.lee@theintercept.com>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7,<3.10"
|
|
click = "*"
|
|
appdirs = "*"
|
|
requests = "*"
|
|
macholib = "*"
|
|
termcolor = "*"
|
|
PySide2 = "^5.15.1"
|
|
pywin32 = {version = "*", platform = "win32"}
|
|
wmi = {version = "*", platform = "win32"}
|
|
pyxdg = {version = "*", platform = "linux"}
|
|
pyobjc-core = {version = "*", platform = "darwin"}
|
|
pyobjc-framework-launchservices = {version = "*", platform = "darwin"}
|
|
colorama = "^0.4.4"
|
|
strip-ansi = "^0.1.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pyinstaller = {version = "*", platform = "darwin"}
|
|
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"
|