From 779ac0a6a072d8b650534ae3b9cb1fba057ad9f4 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 6 Feb 2025 15:49:48 -0500 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 66721032c..e1f6e1f8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,12 @@ [project] -name = "gam7_jay0lee" +name = "gam7" dynamic = [ - "version" + "dependencies", + "version", ] authors = [ - { name="Jay Lee", email="jay0lee@gmail.com" }, - { name="Ross Scroggs", email="Ross.Scroggs@gmail.com" }, + { name="Jay Lee", email="jay0lee@gmail.com" }, + { name="Ross Scroggs", email="Ross.Scroggs@gmail.com" }, ] description = "CLI tool to manage Google Workspace" readme = "README.md" @@ -27,6 +28,12 @@ path = "src/gam/__init__.py" [tool.hatch.build.targets.wheel] packages = ["src/gam"] +tool.hatch.metadata.hooks.requirements_txt] +files = ["src/requirements.txt"] + [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", + "hatch-requirements_txt", +] build-backend = "hatchling.build"