aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorLouis Burda <dev@sinitax.com>2026-01-27 03:31:54 +0100
committerLouis Burda <dev@sinitax.com>2026-01-27 03:31:54 +0100
commitc6625238403d8ea2957bc91ea3e0f04090cbd5aa (patch)
treeae85a763ac1b2bdaa3897f4ecf3252489839dd72 /pyproject.toml
downloadvulners-py-main.tar.gz
vulners-py-main.zip
Add initial versionHEADmain
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..dba56a9
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,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"