2020-02-18 11:30:11 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pymisp"
|
2023-04-19 09:53:05 +02:00
|
|
|
version = "2.4.170.1"
|
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"
|
2022-02-05 10:18:37 +01:00
|
|
|
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',
|
2020-03-16 11:04:31 +01:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2022-03-03 15:29:28 +01:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2023-01-07 14:13:32 +01:00
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
2020-02-18 11:30:11 +01:00
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet'
|
|
|
|
]
|
|
|
|
|
2020-03-16 11:04:31 +01:00
|
|
|
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]
|
2023-01-07 14:13:32 +01:00
|
|
|
python = "^3.8"
|
2023-01-13 02:18:02 +01:00
|
|
|
requests = "^2.28.2"
|
2021-10-14 15:11:35 +02:00
|
|
|
python-dateutil = "^2.8.2"
|
2022-12-02 15:42:57 +01:00
|
|
|
jsonschema = "^4.17.3"
|
2021-10-14 15:11:35 +02:00
|
|
|
deprecated = "^1.2.13"
|
2023-04-19 09:51:51 +02:00
|
|
|
extract_msg = {version = "0.40", optional = true}
|
2021-02-02 11:38:18 +01:00
|
|
|
RTFDE = {version = "^0.0.2", optional = true}
|
2022-05-11 15:16:43 +02:00
|
|
|
oletools = {version = "^0.60.1", optional = true}
|
2022-06-09 14:54:33 +02:00
|
|
|
python-magic = {version = "^0.4.27", optional = true}
|
2022-05-24 18:43:26 +02:00
|
|
|
pydeep2 = {version = "^0.5.1", optional = true}
|
2023-04-19 09:51:51 +02:00
|
|
|
lief = {version = "^0.13.0", optional = true}
|
2023-03-27 09:51:28 +02:00
|
|
|
beautifulsoup4 = {version = "4.11.1", optional = true}
|
2022-06-09 14:54:33 +02:00
|
|
|
validators = {version = "^0.20.0", optional = true}
|
2023-04-19 09:51:51 +02:00
|
|
|
sphinx-autodoc-typehints = {version = "^1.23.0", optional = true}
|
2021-01-19 09:24:14 +01:00
|
|
|
recommonmark = {version = "^0.7.1", optional = true}
|
2022-10-27 14:00:31 +02:00
|
|
|
reportlab = {version = "^3.6.12", optional = true}
|
2020-05-12 22:35:02 +02:00
|
|
|
pyfaup = {version = "^1.2", optional = true}
|
2023-04-19 09:51:51 +02:00
|
|
|
publicsuffixlist = {version = "^0.9.4", optional = true}
|
2023-03-17 13:32:31 +01:00
|
|
|
urllib3 = {extras = ["brotli"], version = "^1.26.15", optional = true}
|
2020-02-18 11:30:11 +01:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
2022-01-16 20:41:05 +01:00
|
|
|
fileobjects = ['python-magic', 'pydeep2', 'lief']
|
2020-02-18 11:30:11 +01:00
|
|
|
openioc = ['beautifulsoup4']
|
|
|
|
virustotal = ['validators']
|
|
|
|
docs = ['sphinx-autodoc-typehints', 'recommonmark']
|
|
|
|
pdfexport = ['reportlab']
|
2023-01-16 10:59:40 +01:00
|
|
|
url = ['pyfaup']
|
2020-12-28 16:41:11 +01:00
|
|
|
email = ['extract_msg', "RTFDE", "oletools"]
|
2021-02-02 11:38:18 +01:00
|
|
|
brotli = ['urllib3']
|
2020-02-18 11:30:11 +01:00
|
|
|
|
2022-10-04 19:51:48 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-09-09 11:49:14 +02:00
|
|
|
requests-mock = "^1.10.0"
|
2023-04-12 15:51:26 +02:00
|
|
|
mypy = "^1.2.0"
|
|
|
|
ipython = "^8.12.0"
|
|
|
|
jupyterlab = "^3.6.3"
|
|
|
|
types-requests = "^2.28.11.17"
|
|
|
|
types-python-dateutil = "^2.8.19.12"
|
|
|
|
types-redis = "^4.5.4.1"
|
2021-12-20 11:18:43 +01:00
|
|
|
types-Flask = "^1.1.6"
|
2022-09-30 10:49:30 +02:00
|
|
|
pytest-cov = "^4.0.0"
|
2020-02-18 11:30:11 +01:00
|
|
|
|
|
|
|
[build-system]
|
2022-09-30 10:49:30 +02:00
|
|
|
requires = ["poetry_core>=1.1", "setuptools"]
|
2020-10-09 12:54:09 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|