PyMISP/pyproject.toml

88 lines
2.7 KiB
TOML
Raw Normal View History

2020-02-18 11:30:11 +01:00
[tool.poetry]
name = "pymisp"
2022-05-30 11:00:59 +02:00
version = "2.4.159"
2020-02-18 11:30:11 +01:00
description = "Python API for MISP."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-2-Clause"
repository = "https://github.com/MISP/PyMISP"
documentation = "https://pymisp.readthedocs.io"
2020-02-18 11:30:11 +01:00
readme = "README.md"
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
2022-03-03 15:29:28 +01:00
'Programming Language :: Python :: 3.9',
2020-02-18 11:30:11 +01:00
'Topic :: Security',
'Topic :: Internet'
]
include = [
"CHANGELOG.txt",
"README.md",
"pymisp/data/*.json",
"pymisp/data/misp-objects/schema_objects.json",
"pymisp/data/misp-objects/schema_relationships.json",
"pymisp/data/misp-objects/objects/*/definition.json",
"pymisp/data/misp-objects/relationships/definition.json",
"pymisp/tools/pdf_fonts/Noto_TTF/*"
]
2020-02-18 11:30:11 +01:00
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MISP/PyMISP/issues"
"Source" = "https://github.com/MISP/PyMISP"
[tool.poetry.dependencies]
python = "^3.7"
2022-05-11 15:16:43 +02:00
requests = "^2.27.1"
2021-10-14 15:11:35 +02:00
python-dateutil = "^2.8.2"
2022-05-11 15:16:43 +02:00
jsonschema = "^4.5.1"
2021-10-14 15:11:35 +02:00
deprecated = "^1.2.13"
2022-05-30 11:00:59 +02:00
extract_msg = {version = "^0.30.13", optional = true}
RTFDE = {version = "^0.0.2", optional = true}
2022-05-11 15:16:43 +02:00
oletools = {version = "^0.60.1", optional = true}
2022-05-24 18:43:26 +02:00
python-magic = {version = "^0.4.26", optional = true}
pydeep2 = {version = "^0.5.1", optional = true}
2022-05-11 15:16:43 +02:00
lief = {version = "^0.12.1", optional = true}
2022-05-24 18:43:26 +02:00
beautifulsoup4 = {version = "^4.11.1", optional = true}
2022-05-11 15:16:43 +02:00
validators = {version = "^0.19.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.18.1", optional = true}
2021-01-19 09:24:14 +01:00
recommonmark = {version = "^0.7.1", optional = true}
2022-05-24 18:43:26 +02:00
reportlab = {version = "^3.6.9", optional = true}
2020-05-12 22:35:02 +02:00
pyfaup = {version = "^1.2", optional = true}
2022-05-24 18:43:26 +02:00
chardet = {version = "^4.0.0", optional = true}
urllib3 = {extras = ["brotli"], version = "^1.26.9", optional = true}
2020-02-18 11:30:11 +01:00
[tool.poetry.extras]
fileobjects = ['python-magic', 'pydeep2', 'lief']
2020-02-18 11:30:11 +01:00
openioc = ['beautifulsoup4']
virustotal = ['validators']
docs = ['sphinx-autodoc-typehints', 'recommonmark']
pdfexport = ['reportlab']
url = ['pyfaup', 'chardet']
email = ['extract_msg', "RTFDE", "oletools"]
brotli = ['urllib3']
2020-02-18 11:30:11 +01:00
[tool.poetry.dev-dependencies]
2021-10-14 15:11:35 +02:00
requests-mock = "^1.9.3"
2022-05-30 11:00:59 +02:00
mypy = "^0.960"
ipython = "^7.34.0"
2022-05-24 18:43:26 +02:00
jupyterlab = "^3.4.2"
2022-05-30 11:00:59 +02:00
types-requests = "^2.27.29"
types-python-dateutil = "^2.8.17"
types-redis = "^4.2.6"
2021-12-20 11:18:43 +01:00
types-Flask = "^1.1.6"
pytest-cov = "^3.0.0"
2020-02-18 11:30:11 +01:00
[build-system]
2020-10-09 12:54:09 +02:00
requires = ["poetry_core>=1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"