PyMISP/pyproject.toml

91 lines
2.9 KiB
TOML
Raw Normal View History

2020-02-18 11:30:11 +01:00
[tool.poetry]
name = "pymisp"
2023-06-08 15:08:04 +02:00
version = "2.4.172"
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",
"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.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"
2022-12-02 15:42:57 +01:00
jsonschema = "^4.17.3"
2023-05-29 16:13:41 +02:00
deprecated = "^1.2.14"
extract_msg = {version = "^0.41.2", 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-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-05-29 16:13:41 +02:00
lief = {version = "^0.13.1", optional = true}
beautifulsoup4 = {version = "^4.12.2", 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}
2023-06-08 15:05:31 +02:00
reportlab = {version = "^4.0.4", optional = true}
2020-05-12 22:35:02 +02:00
pyfaup = {version = "^1.2", optional = true}
2023-06-08 15:05:31 +02:00
publicsuffixlist = {version = "^0.10.0.20230608", optional = true}
urllib3 = {extras = ["brotli"], version = "*", 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']
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]
2022-09-09 11:49:14 +02:00
requests-mock = "^1.10.0"
mypy = "^1.3.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-06-08 15:05:31 +02:00
jupyterlab = "^4.0.1"
2023-05-29 16:13:41 +02:00
types-requests = "^2.31.0.1"
types-python-dateutil = "^2.8.19.13"
2023-05-12 11:58:38 +02:00
types-redis = "^4.5.5.2"
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"