PyMISPWarningLists/pyproject.toml

59 lines
1.5 KiB
TOML
Raw Normal View History

2020-04-07 14:41:14 +02:00
[tool.poetry]
name = "pymispwarninglists"
2023-07-11 14:25:16 +02:00
version = "1.5"
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]
2023-07-11 13:17:26 +02:00
python = "^3.8"
2023-05-23 15:21:20 +02:00
requests = {version = "^2.31.0", optional = true}
[tool.poetry.extras]
fetch_lists = ["requests"]
2020-04-07 14:41:14 +02:00
[tool.poetry.dev-dependencies]
2024-01-10 11:08:48 +01:00
jsonschema = "^4.20.0"
mypy = "^1.8.0"
2023-06-26 15:47:58 +02:00
pytest-cov = "^4.1.0"
2024-01-10 11:08:48 +01:00
types-requests = "^2.31.0.20240106"
2020-04-07 14:41:14 +02:00
[build-system]
2022-11-09 10:23:42 +01:00
requires = ["poetry_core>=1.1", "setuptools"]
2022-01-13 11:22:05 +01:00
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_any_generics = true
python_version = 3.8
ignore_errors = false
ignore_missing_imports = false
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true