PyMISP/pyproject.toml

85 lines
2.4 KiB
TOML
Raw Normal View History

2020-02-18 11:30:11 +01:00
[tool.poetry]
name = "pymisp"
2020-11-24 15:03:13 +01:00
version = "2.4.135.3"
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 = "http://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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
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.6"
2020-11-25 12:30:53 +01:00
requests = "^2.25.0"
2020-02-18 11:30:11 +01:00
python-dateutil = "^2.8.1"
jsonschema = "^3.2.0"
2020-11-25 12:30:53 +01:00
deprecated = "^1.2.10"
extract_msg = "^0.27.0"
RTFDE = "^0.0.2"
oletools = "^0.56"
2020-11-25 12:30:53 +01:00
python-magic = {version = "^0.4.18", optional = true}
2020-02-18 11:30:11 +01:00
pydeep = {version = "^0.4", optional = true}
lief = {version = "^0.10.1", optional = true}
2020-11-25 12:30:53 +01:00
beautifulsoup4 = {version = "^4.9.3", optional = true}
validators = {version = "^0.18.1", optional = true}
sphinx-autodoc-typehints = {version = "^1.11.1", optional = true}
2020-02-18 11:30:11 +01:00
recommonmark = {version = "^0.6.0", optional = true}
2020-11-25 12:30:53 +01:00
reportlab = {version = "^3.5.55", optional = true}
2020-05-12 22:35:02 +02:00
pyfaup = {version = "^1.2", optional = true}
2020-02-18 11:30:11 +01:00
2020-11-25 12:30:53 +01:00
2020-02-18 11:30:11 +01:00
[tool.poetry.extras]
fileobjects = ['python-magic', 'pydeep', 'lief']
openioc = ['beautifulsoup4']
virustotal = ['validators']
docs = ['sphinx-autodoc-typehints', 'recommonmark']
pdfexport = ['reportlab']
2020-05-12 22:35:02 +02:00
url = ['pyfaup']
email = ['extract_msg', "RTFDE", "oletools"]
2020-02-18 11:30:11 +01:00
[tool.poetry.dev-dependencies]
nose = "^1.3.7"
2020-11-25 12:30:53 +01:00
coveralls = "^2.2.0"
codecov = "^2.1.10"
requests-mock = "^1.8.0"
mypy = "^0.790"
flake8 = "^3.8.4"
ipython = "^7.16.1"
jupyterlab = "^2.2.9"
2020-02-18 11:30:11 +01:00
[build-system]
2020-10-09 12:54:09 +02:00
requires = ["poetry_core>=1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"