-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
42 lines (35 loc) · 1.24 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
[tool.poetry]
name = "pymispgalaxies"
version = "1.0.0"
description = "Python API for the MISP Galaxies."
authors = ["Raphaël Vinot <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/MISP/PyMISPGalaxies"
readme = "README.md"
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
]
include = ["pymispgalaxies/data/misp-galaxy/schema_*.json",
"pymispgalaxies/data/misp-galaxy/clusters/*.json",
"pymispgalaxies/data/misp-galaxy/galaxies/*.json",
"pymispgalaxies/data/misp-galaxy/misp/*.json",
"pymispgalaxies/data/misp-galaxy/vocabularies/common/*.json",
"pymispgalaxies/data/misp-galaxy/vocabularies/threat-actor/*.json"]
exclude = ["pymispgalaxies/data/misp-galaxy/tools/**/*"]
[tool.poetry.dependencies]
python = "^3.9"
jsonschema = "^4.23.0"
[tool.poetry.dev-dependencies]
mypy = "^1.13.0"
coverage = "^7.6.7"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"