-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
58 lines (50 loc) · 1.58 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
[tool.poetry]
name = "misp-stix"
version = "2.4.196.1"
description = "Python scripts used by MISP to export MISP format into STIX and to import STIX into MISP format."
authors = ["Christian Studer <[email protected]>"]
maintainers = ["Christian Studer <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/MISP/misp-stix"
documentation = "https://misp.github.io/misp-stix/"
readme = "README.md"
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security'
]
packages = [
{ include = "misp_stix_converter" }
]
include = [
"misp_stix_converter/data/cti",
"misp_stix_converter/data/misp-galaxy"
]
[tool.poetry.urls]
"Source" = "https://github.com/MISP/misp-stix"
"Bug Tracker" = "https://github.com/MISP/misp-stix/issues"
[tool.poetry.scripts]
misp_stix_converter = 'misp_stix_converter:main'
[tool.poetry.dependencies]
python = "^3.8"
pymisp = "^2.4.196"
stix = "^1.2.0"
cybox = "^2.1.0"
mixbox = "^1.0.3"
maec = "^4.1.0"
stix-edh = "1.0.3"
misp-lib-stix2 = "^3.0.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
pytest = "^7.1.2"
[build-system]
requires = ["poetry_core>=1.2", "setuptools>=65.1.1"]
build-backend = "poetry.core.masonry.api"