mirror of https://github.com/MISP/PyMISPGalaxies
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "pymispgalaxies"
|
|
version = "1.0.0"
|
|
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"]
|
|
|
|
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"
|