2020-02-17 21:38:12 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pymispgalaxies"
|
2023-05-02 16:43:32 +02:00
|
|
|
version = "0.4"
|
2020-02-17 21:38:12 +01:00
|
|
|
description = "Python API for the MISP Galaxies."
|
|
|
|
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
|
|
|
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"]
|
|
|
|
|
2020-02-17 21:59:31 +01:00
|
|
|
exclude = ["pymispgalaxies/data/misp-galaxy/tools/**/*"]
|
|
|
|
|
2020-02-17 21:38:12 +01:00
|
|
|
[tool.poetry.dependencies]
|
2022-12-12 09:43:53 +01:00
|
|
|
python = "^3.8.1"
|
2024-04-16 17:17:11 +02:00
|
|
|
jsonschema = "^4.21.1"
|
2020-02-17 21:38:12 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2024-04-16 17:17:11 +02:00
|
|
|
mypy = "^1.9.0"
|
|
|
|
coverage = "^7.4.4"
|
|
|
|
pytest-cov = "^5.0.0"
|
2020-02-17 21:38:12 +01:00
|
|
|
|
|
|
|
[build-system]
|
2023-04-25 21:00:32 +02:00
|
|
|
requires = ["poetry-core"]
|
2023-05-02 00:35:06 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|