aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorLouis Burda <dev@sinitax.com>2026-01-23 21:41:09 +0100
committerLouis Burda <dev@sinitax.com>2026-01-23 21:41:09 +0100
commit65a71e1d9f04e930cbaa5a312395f0fb63c7eef9 (patch)
treec0785f125f72d5ab10a89e3c7e086037f25ef871 /pyproject.toml
downloadhttpdump-main.tar.gz
httpdump-main.zip
Add initial versionHEADmain
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..182b9d7
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,23 @@
+[project]
+name = "httpdump"
+version = "0.1.0"
+description = "Parse HTTP requests and responses into JSON"
+readme = "README.md"
+requires-python = ">=3.12"
+dependencies = ["click"]
+
+[project.optional-dependencies]
+dev = ["click-man"]
+
+[project.scripts]
+httpdump = "httpdump:main"
+
+[tool.uv]
+package = true
+
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
+[tool.setuptools]
+py-modules = ["httpdump"]