Skip to content

Commit

Permalink
Generate dbt_yml_files from pydantic classes
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceliu committed Jul 25, 2024
1 parent 3060aa0 commit 6484bab
Show file tree
Hide file tree
Showing 7 changed files with 5,839 additions and 43 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

.DS_Store
node_modules/
.venv
.venv
__pycache__
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "dbt-jsonschema"
version = "0.1.0"
description = ''
readme = "README.md"
requires-python = ">=3.11"
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["pydantic >=2.8.0, <3.0.0"]

[project.urls]
Documentation = "https://github.com/dbt-labs/dbt-jsonschema/blob/main/README.md"
Issues = "https://github.com/dbt-labs/dbt-jsonschema/issues"
Source = "https://github.com/dbt-labs/dbt-jsonschema"

[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]
Loading

0 comments on commit 6484bab

Please sign in to comment.