-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
91 lines (73 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "BlueSkySight"
version = "0.6.0"
description = "A client to gather vulnerability-related information from Bluesky."
authors = [
{name = "Cédric Bonhomme", email = "[email protected]"}
]
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["Vulnerability-Lookup", "Vulnerability", "CVE", "Bluesky"]
# classifieres is dynamic because we want to create Python classifiers automatically
dynamic = ["classifiers"]
requires-python = ">=3.10,<4.0"
dependencies = [
"pyvulnerabilitylookup (>=2.2.0)",
"websockets (>=14.1)",
"cbor2 (>=5.6.5)",
"zstandard (>=0.23.0)",
"httpx (>=0.28.1)",
]
[project.urls]
Homepage = "https://github.com/vulnerability-lookup/BlueSkySight"
Repository = "https://github.com/vulnerability-lookup/BlueSkySight"
Changelog = "https://github.com/vulnerability-lookup/BlueSkySight/blob/main/CHANGELOG.md"
[project.scripts]
BlueSkySight-Firehose-v1 = "blueskysight.stream:main"
BlueSkySight-Firehose = "blueskysight.firehose:main"
BlueSkySight-Jetstream = "blueskysight.jetstream:main"
[tool.poetry]
requires-poetry = ">=2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Security",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
include = [
"README.md",
"COPYING",
"blueskysight/conf_sample.py",
]
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
flake8 = "^6.0.0"
pre-commit = "^4.0.1"
types-requests = "^2.32.0.20241016"
[tool.poetry.group.dev]
optional = true
[tool.mypy]
python_version = "3.13"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
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
exclude = "build|dist|docs|blueskysight.egg-info"
[tool.isort]
profile = "black"