-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.09 KB
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
[tool.poetry]
name = "vulners"
version = "3.1.8"
description = "Python library and command-line utility for Vulners (https://vulners.com)"
readme = "README.md"
authors = ["Vulners Team"]
keywords = ["security", "network", "vulners", "vulnerability", "CVE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
packages = [
{ include = "vulners" },
]
[tool.poetry.dependencies]
python = ">=3.10"
httpx = "^0.28.1"
orjson = "^3.10.18"
pydantic = "^2.11.4"
[tool.poetry.group.dev.dependencies]
mypy = { version = "^1.15.0", extras = ["faster-cache"] }
ruff = "^0.11.8"
[tool.ruff]
line-length = 98
target-version = "py313"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"