PyMISP/pyproject.toml

95 lines
3.1 KiB
TOML
Raw Normal View History

2020-02-18 11:30:11 +01:00
[tool.poetry]
name = "pymisp"
2024-03-20 14:12:53 +01:00
version = "2.4.188"
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',
2024-01-22 10:34:14 +01:00
'Programming Language :: Python :: 3.12',
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"
2024-03-07 14:00:57 +01:00
python-dateutil = "^2.9.0.post0"
2023-05-29 16:13:41 +02:00
deprecated = "^1.2.14"
2024-02-29 11:07:12 +01:00
extract_msg = {version = "^0.48.0", optional = true}
2023-12-05 00:47:44 +01:00
RTFDE = {version = "^0.1.1", 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}
2024-02-12 11:46:34 +01:00
lief = {version = "^0.14.1", optional = true}
2024-01-19 11:05:31 +01:00
beautifulsoup4 = {version = "^4.12.3", optional = true}
2024-03-20 14:06:44 +01:00
validators = {version = "^0.23.0", optional = true}
2024-02-12 11:46:34 +01:00
sphinx-autodoc-typehints = {version = "^2.0.0", optional = true}
2021-01-19 09:24:14 +01:00
recommonmark = {version = "^0.7.1", optional = true}
2024-02-12 11:46:34 +01:00
reportlab = {version = "^4.1.0", optional = true}
2020-05-12 22:35:02 +02:00
pyfaup = {version = "^1.2", optional = true}
2023-12-14 12:46:13 +01:00
publicsuffixlist = {version = "^0.10.0.20231214", 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"
2024-03-20 14:06:44 +01:00
mypy = "^1.9.0"
2023-05-04 10:07:23 +02:00
ipython = [
{version = "<8.13.0", python = "<3.9"},
{version = "^8.18.0", python = ">=3.9"},
{version = "^8.19.0", python = ">=3.10"}
2023-05-04 10:07:23 +02:00
]
2024-03-20 14:06:44 +01:00
jupyterlab = "^4.1.5"
types-requests = "^2.31.0.20240311"
types-python-dateutil = "^2.9.0.20240316"
types-redis = "^4.6.0.20240311"
2021-12-20 11:18:43 +01:00
types-Flask = "^1.1.6"
pytest-cov = ">=4.1,<6.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"