From 3133117a7eb118accfa475cf0af868093282f068 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Wed, 17 Jan 2024 11:23:16 -0600 Subject: [PATCH] minor repo cleanup (#31) * minor repo cleanup * Update dbt_common/__about__.py --- README.md | 4 +--- dbt_common/__about__.py | 1 + pyproject.toml | 5 ++++- 3 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 dbt_common/__about__.py diff --git a/README.md b/README.md index ccfafb42..48490856 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ -** replace `dbt-common` with your repository name in all docs - ## Understanding dbt-common -A short description of the purpose of this repository. Include relevant images. +The shared common utilities for dbt-core and adapter implementations use ## Getting started diff --git a/dbt_common/__about__.py b/dbt_common/__about__.py new file mode 100644 index 00000000..9f7a875c --- /dev/null +++ b/dbt_common/__about__.py @@ -0,0 +1 @@ +version = "0.1.0" diff --git a/pyproject.toml b/pyproject.toml index 4a54150c..7c84afe3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dbt-common" -version = "0.0.1" +dynamic = ["version"] description = "The shared common utilities that dbt-core and adapter implementations use" readme = "README.md" requires-python = ">=3.8" @@ -33,6 +33,9 @@ dependencies = [ "typing-extensions~=4.4", ] +[tool.hatch.version] +path = "dbt_common/__about__.py" + [build-system] requires = ["hatchling"] build-backend = "hatchling.build"