mirror of https://github.com/MISP/PyMISP
94 lines
3.0 KiB
TOML
94 lines
3.0 KiB
TOML
[tool.poetry]
|
|
name = "pymisp"
|
|
version = "2.4.182"
|
|
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"
|
|
|
|
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.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Topic :: Security',
|
|
'Topic :: Internet'
|
|
]
|
|
|
|
include = [
|
|
"CHANGELOG.txt",
|
|
"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/*"
|
|
]
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/MISP/PyMISP/issues"
|
|
"Source" = "https://github.com/MISP/PyMISP"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
requests = "^2.31.0"
|
|
python-dateutil = "^2.8.2"
|
|
jsonschema = "^4.20.0"
|
|
deprecated = "^1.2.14"
|
|
extract_msg = {version = "^0.47.0", optional = true}
|
|
RTFDE = {version = "^0.1.1", optional = true}
|
|
oletools = {version = "^0.60.1", optional = true}
|
|
python-magic = {version = "^0.4.27", optional = true}
|
|
pydeep2 = {version = "^0.5.1", optional = true}
|
|
lief = {version = "^0.13.2", optional = true}
|
|
beautifulsoup4 = {version = "^4.12.2", optional = true}
|
|
validators = {version = "^0.22.0", optional = true}
|
|
sphinx-autodoc-typehints = {version = "^1.25.2", optional = true}
|
|
recommonmark = {version = "^0.7.1", optional = true}
|
|
reportlab = {version = "^4.0.8", optional = true}
|
|
pyfaup = {version = "^1.2", optional = true}
|
|
publicsuffixlist = {version = "^0.10.0.20231214", optional = true}
|
|
urllib3 = {extras = ["brotli"], version = "*", optional = true}
|
|
Sphinx = [
|
|
{version = "<7.2", python = "<3.9", optional = true},
|
|
{version = "^7.2", python = ">=3.9", optional = true}
|
|
]
|
|
|
|
[tool.poetry.extras]
|
|
fileobjects = ['python-magic', 'pydeep2', 'lief']
|
|
openioc = ['beautifulsoup4']
|
|
virustotal = ['validators']
|
|
docs = ['sphinx-autodoc-typehints', 'recommonmark', 'sphinx']
|
|
pdfexport = ['reportlab']
|
|
url = ['pyfaup']
|
|
email = ['extract_msg', "RTFDE", "oletools"]
|
|
brotli = ['urllib3']
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
requests-mock = "^1.11.0"
|
|
mypy = "^1.7.1"
|
|
ipython = [
|
|
{version = "<8.13.0", python = "<3.9"},
|
|
{version = "^8.13.0", python = ">=3.9"}
|
|
]
|
|
jupyterlab = "^4.0.9"
|
|
types-requests = "^2.31.0.10"
|
|
types-python-dateutil = "^2.8.19.14"
|
|
types-redis = "^4.6.0.11"
|
|
types-Flask = "^1.1.6"
|
|
pytest-cov = "^4.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry_core>=1.1", "setuptools"]
|
|
build-backend = "poetry.core.masonry.api"
|