aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
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"