-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathpyproject.toml
91 lines (75 loc) · 2.42 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "pymisp"
version = "2.5.4"
description = "Python API for MISP."
authors = [
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
]
license = "BSD-2-Clause"
readme = "README.md"
requires-python = ">=3.9,<4.0"
dynamic = [ "classifiers" ]
dependencies = [
"requests (>=2.32.3)",
"python-dateutil (>=2.9.0.post0)",
"deprecated (>=1.2.18)"
]
[project.urls]
repository = "https://github.com/MISP/PyMISP"
issues = "https://github.com/MISP/PyMISP/issues"
documentation = "https://pymisp.readthedocs.io"
[project.optional-dependencies]
fileobjects = [
"python-magic (>=0.4.27)",
"pydeep2 (>=0.5.1)",
"lief (>=0.16.2)"
]
openioc = [ "beautifulsoup4 (>=4.12.3)" ]
virustotal = [ "validators (>=0.34.0)" ]
docs = [
"sphinx-autodoc-typehints (>=3.0.1) ; python_version >= \"3.10\"",
"sphinx (>=8.1.3) ; python_version >= \"3.10\"",
"docutils (>=0.21.2) ; python_version >= \"3.10\"",
"myst-parser (>=4.0) ; python_version >= \"3.10\""
]
pdfexport = [ "reportlab (>=4.2.5)" ]
url = [ "pyfaup (>=1.2)" ]
email = [
"extract_msg (>=0.52)",
"RTFDE (>=0.1.2) ; python_version <= \"3.9\"",
"oletools (>=0.60.2)"
]
brotli = [ "urllib3 (>=2.3.0)" ]
[tool.poetry]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Internet'
]
exclude = ["pymisp/data"]
include = [
{path = "CHANGELOG.txt", format = ["sdist", "wheel"]},
{path = "pymisp/data/*.json", format = ["sdist", "wheel"]},
{path = "pymisp/data/misp-objects/*.json", format = ["sdist", "wheel"]},
{path = "pymisp/data/misp-objects/objects/*/definition.json", format = ["sdist", "wheel"]},
{path = "pymisp/data/misp-objects/relationships/definition.json", format = ["sdist", "wheel"]},
{path = "docs", format = ["sdist"]},
{path = "examples/*.py", format = ["sdist", "wheel"]},
{path = "tests", format = ["sdist", "wheel"]}
]
[tool.poetry.group.dev.dependencies]
requests-mock = "^1.12.1"
mypy = "^1.14.1"
types-requests = "^2.32.0.20241016"
types-python-dateutil = "^2.9.0.20241206"
types-redis = "^4.6.0.20241004"
types-Flask = "^1.1.6"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"