diff options
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"] |
