mail_to_misp/pyproject.toml

66 lines
1.9 KiB
TOML
Raw Normal View History

2020-06-07 21:28:15 +02:00
[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"
2021-04-02 09:58:56 +02:00
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"
2020-06-07 21:28:15 +02:00
[tool.poetry.dependencies]
2022-10-19 11:31:53 +02:00
python = "^3.8"
requests = "^2.28.1"
python-dateutil = "^2.8.2"
jsonschema = "^4.16.0"
deprecated = "^1.2.13"
dnspython = "^2.2.1"
2020-06-07 21:28:15 +02:00
defang = "^0.5.3"
2022-10-19 11:31:53 +02:00
extract_msg = {version = "^0.36.4", optional = true}
2021-04-02 10:37:45 +02:00
RTFDE = {version = "^0.0.2", optional = true}
2022-10-19 11:31:53 +02:00
oletools = {version = "^0.60.1", optional = true}
python-magic = {version = "^0.4.27", optional = true}
2021-04-02 10:37:45 +02:00
pydeep = {version = "^0.4", optional = true}
lief = {version = "^0.12.2", optional = true}
2022-10-19 11:31:53 +02:00
beautifulsoup4 = {version = "^4.11.1", optional = true}
validators = {version = "^0.20.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.19.4", optional = true}
2021-04-02 10:37:45 +02:00
recommonmark = {version = "^0.7.1", optional = true}
2022-10-19 11:31:53 +02:00
reportlab = {version = "^3.6.11", optional = true}
2021-04-02 10:41:15 +02:00
pyfaup = {version = "^1.2", optional = false}
2022-10-19 11:31:53 +02:00
urllib3 = {extras = ["brotli"], version = "^1.26.12", optional = true}
pymisp = "^2.4.162.1"
flask = "^2.2.2"
flask-bootstrap = "^3.3.7.1"
gunicorn = "^20.1.0"
chardet = "^5.0.0"
aiosmtpd = "^1.4.2"
2020-06-07 21:28:15 +02:00
2021-04-02 09:58:56 +02:00
[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']
2020-06-07 21:28:15 +02:00
[tool.poetry.dev-dependencies]
nose = "^1.3.7"
2022-10-19 11:31:53 +02:00
coveralls = "^3.3.1"
codecov = "^2.1.12"
requests-mock = "^1.10.0"
mypy = "^0.982"
flake8 = "^5.0.4"
ipython = "^8.5.0"
jupyterlab = "^3.4.8"
2020-06-07 21:28:15 +02:00
[build-system]
2021-04-02 09:58:56 +02:00
requires = ["poetry_core>=1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"