aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: dba56a94975263250edd529669e11e1713692f4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "vulners"
version = "0.1.0"
description = "CLI tool for querying CVEs and CPEs from vulners.com"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
    "click>=8.1",
    "httpx>=0.27",
    "rich>=13.7",
]

[project.scripts]
vulners = "vulners.cli:main"

[build-system]
requires = ["uv_build>=0.9.25,<0.10.0"]
build-backend = "uv_build"