blob: 1639bf4ade987162b8e085f27e5e1caf3181232d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[project]
name = "cvedb-py"
version = "0.1.0"
description = "CLI client for Shodan's CVEDB API"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"typer>=0.12",
"rich>=13.0",
"pydantic>=2.0",
]
[project.scripts]
cvedb = "cvedb.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cvedb"]
|