mirror of https://github.com/MISP/PyMISPGalaxies
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "pymispgalaxies"
|
|
version = "0.2"
|
|
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.6"
|
|
jsonschema = "^3.2.0"
|
|
mypy = "^0.761"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
nose = "^1.3.7"
|
|
mypy = "^0.761"
|
|
coverage = "^5.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|