diff options
| author | Louis Burda <dev@sinitax.com> | 2026-01-23 21:41:09 +0100 |
|---|---|---|
| committer | Louis Burda <dev@sinitax.com> | 2026-01-23 21:41:09 +0100 |
| commit | 65a71e1d9f04e930cbaa5a312395f0fb63c7eef9 (patch) | |
| tree | c0785f125f72d5ab10a89e3c7e086037f25ef871 /pyproject.toml | |
| download | httpdump-main.tar.gz httpdump-main.zip | |
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 23 |
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"] |
