From 202ac12f7ad9e41212124f3c02f328efcc736221 Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Tue, 5 Mar 2024 00:13:01 +0100 Subject: [PATCH] moved the distribution upwards --- .gitignore | 2 ++ gunicorn-logging-extension/pyproject.toml | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d13c546 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +dist/gunicorn_logging_extension-0.0.1-py3-none-any.whl +dist/gunicorn_logging_extension-0.0.1.tar.gz diff --git a/gunicorn-logging-extension/pyproject.toml b/gunicorn-logging-extension/pyproject.toml index edb5a4c..8368f1e 100644 --- a/gunicorn-logging-extension/pyproject.toml +++ b/gunicorn-logging-extension/pyproject.toml @@ -32,6 +32,8 @@ Source = "https://github.com/unknown/gunicorn-logging-extension" [tool.hatch.version] path = "src/gunicorn_logging_extension/__init__.py" +[tool.hatch.build] +directory = "../dist" [tool.hatch.envs.default] dependencies = ["coverage[toml]>=6.5", "pytest"] [tool.hatch.envs.default.scripts]