-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
58 lines (50 loc) · 1.52 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "pymispwarninglists"
version = "1.6"
description = "Python API for the MISP warning lists."
authors = ["Raphaël Vinot <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/MISP/PyMISPWarningLists/"
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.8"
requests = {version = "^2.32.3", optional = true}
[tool.poetry.extras]
fetch_lists = ["requests"]
[tool.poetry.dev-dependencies]
jsonschema = "^4.23.0"
mypy = "^1.11.2"
pytest-cov = "^5.0.0"
types-requests = "^2.32.0.20240914"
[build-system]
requires = ["poetry_core>=1.1", "setuptools"]
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