PyMISP/pyproject.toml

94 lines
3.0 KiB
TOML
Raw Permalink Normal View History

2020-02-18 11:30:11 +01:00
[tool.poetry]
name = "pymisp"
2023-11-23 13:44:13 +01:00
version = "2.4.179"
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.8',
2022-03-03 15:29:28 +01:00
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
2020-02-18 11:30:11 +01:00
'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/*"
]
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.8"
2023-05-23 15:09:52 +02:00
requests = "^2.31.0"
2021-10-14 15:11:35 +02:00
python-dateutil = "^2.8.2"
jsonschema = ">=4.17.3"
2023-05-29 16:13:41 +02:00
deprecated = "^1.2.14"
2023-11-17 12:52:05 +01:00
extract_msg = {version = "^0.46.2", optional = true}
2023-07-31 11:17:56 +02:00
RTFDE = {version = "^0.1.0", 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-07-06 19:07:31 +02:00
lief = {version = "^0.13.2", optional = true}
beautifulsoup4 = {version = "^4.12.2", optional = true}
2023-09-15 10:34:24 +02:00
validators = {version = "^0.22.0", optional = true}
2023-11-14 12:26:13 +01:00
sphinx-autodoc-typehints = {version = "^1.25.2", optional = true}
2021-01-19 09:24:14 +01:00
recommonmark = {version = "^0.7.1", optional = true}
2023-11-14 12:26:13 +01:00
reportlab = {version = "^4.0.7", optional = true}
2020-05-12 22:35:02 +02:00
pyfaup = {version = "^1.2", optional = true}
2023-11-23 13:44:13 +01:00
publicsuffixlist = {version = "^0.10.0.20231122", optional = true}
urllib3 = {extras = ["brotli"], version = "*", optional = true}
2023-08-23 13:57:48 +02:00
Sphinx = [
{version = "<7.2", python = "<3.9", optional = true},
{version = "^7.2", python = ">=3.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']
2023-08-23 13:57:48 +02:00
docs = ['sphinx-autodoc-typehints', 'recommonmark', 'sphinx']
2020-02-18 11:30:11 +01:00
pdfexport = ['reportlab']
2023-01-16 10:59:40 +01:00
url = ['pyfaup']
email = ['extract_msg', "RTFDE", "oletools"]
brotli = ['urllib3']
2020-02-18 11:30:11 +01:00
2022-10-04 19:51:48 +02:00
[tool.poetry.group.dev.dependencies]
2023-07-06 19:07:31 +02:00
requests-mock = "^1.11.0"
2023-11-14 12:26:13 +01:00
mypy = "^1.7.0"
2023-05-04 10:07:23 +02:00
ipython = [
{version = "<8.13.0", python = "<3.9"},
{version = "^8.13.0", python = ">=3.9"}
]
2023-11-23 13:44:13 +01:00
jupyterlab = "^4.0.9"
2023-10-18 18:42:08 +02:00
types-requests = "^2.31.0.10"
2023-07-22 11:48:58 +02:00
types-python-dateutil = "^2.8.19.14"
2023-11-14 12:26:13 +01:00
types-redis = "^4.6.0.10"
2021-12-20 11:18:43 +01:00
types-Flask = "^1.1.6"
2023-05-29 16:13:41 +02:00
pytest-cov = "^4.1.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"