Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor repo cleanup #31

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 1 addition & 0 deletions dbt_common/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = "0.0.1"
emmyoop marked this conversation as resolved.
Show resolved Hide resolved
emmyoop marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down