From 1c69a376730432cdab300fdfa7ef6822e22c3267 Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Tue, 5 Nov 2024 14:02:52 +0100 Subject: [PATCH] build: update package name --- coqpit/__init__.py | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/coqpit/__init__.py b/coqpit/__init__.py index 0635173..8e0f832 100644 --- a/coqpit/__init__.py +++ b/coqpit/__init__.py @@ -4,4 +4,4 @@ __all__ = ["MISSING", "Coqpit", "check_argument"] -__version__ = importlib.metadata.version("coqpit") +__version__ = importlib.metadata.version("coqpit-config") diff --git a/pyproject.toml b/pyproject.toml index 3cadc39..122e1e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "coqpit" +name = "coqpit-config" version = "0.1.0" description = "Simple (maybe too simple), light-weight config management through python data-classes." readme = "README.md" @@ -55,6 +55,9 @@ exclude = [ "/tests", ] +[tool.hatch.build.targets.wheel] +packages = ["coqpit"] + [tool.ruff] target-version = "py39" line-length = 120