mail_to_misp/pyproject.toml

48 lines
1.1 KiB
TOML

[tool.poetry]
name = "mail2misp"
version = "0.1.0"
description = "Importer of EML files into a MISP instance"
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "AGPL-3.0"
repository = "https://github.com/MISP/mail_to_misp"
readme = "README.md"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MISP/mail_to_misp/issues"
"Source" = "https://github.com/MISP/mail_to_misp"
[tool.poetry.dependencies]
python = "^3.6"
pyfaup = "^1.2"
dnspython = "^1.16.0"
lief = "^0.11.4"
python-magic = "^0.4.18"
pydeep = "^0.4"
defang = "^0.5.3"
pymisp = "^2.4.126"
flask = "^1.1.2"
flask-bootstrap = "^3.3.7"
gunicorn = "^20.0.4"
validators = "^0.15.0"
[tool.poetry.extras]
fileobjects = ['python-magic', 'pydeep', 'lief']
openioc = ['beautifulsoup4']
virustotal = ['validators']
docs = ['sphinx-autodoc-typehints', 'recommonmark']
pdfexport = ['reportlab']
url = ['pyfaup']
email = ['extract_msg', "RTFDE", "oletools"]
brotli = ['urllib3']
[tool.poetry.dev-dependencies]
coverage = "^5.1"
codecov = "^2.1.4"
coveralls = "^2.0.0"
nose = "^1.3.7"
[build-system]
requires = ["poetry_core>=1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"