PyMISPWarningLists/pyproject.toml

37 lines
997 B
TOML
Raw Normal View History

2020-04-07 14:41:14 +02:00
[tool.poetry]
name = "pymispwarninglists"
2021-01-21 15:23:15 +01:00
version = "1.2"
2020-04-07 14:41:14 +02:00
description = "Python API for the MISP warning lists."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-3-Clause"
readme = "README.md"
2020-04-20 10:33:52 +02:00
repository = "https://github.com/MISP/PyMISPWarningLists/"
2020-04-07 14:41:14 +02:00
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 = ["pymispwarninglists/data/misp-warninglists/schema.json",
"pymispwarninglists/data/misp-warninglists/lists/*/*.json"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
coveralls = "^2.0.0"
2020-04-07 14:41:14 +02:00
codecov = "^2.0.22"
jsonschema = "^3.2.0"
nose = "^1.3.7"
2021-01-21 15:23:15 +01:00
mypy = "^0.790"
2020-04-07 14:41:14 +02:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"