bqsqlparse 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/PKG-INFO +1 -1
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/pyproject.toml +1 -1
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/__init__.py +1 -1
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/.gitignore +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/DEPLOYMENT.md +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/LICENSE +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/README.md +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/errors.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/functions.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/lexer.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/lineage.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/nodes.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/parser.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/py.typed +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/src/bqsqlparse/unparse.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/tests/test_lexer.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/tests/test_lineage.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/tests/test_parser.py +0 -0
- {bqsqlparse-0.1.0 → bqsqlparse-0.1.1}/tests/test_scripting.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: bqsqlparse
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A pure-Python BigQuery (GoogleSQL) parser with column-level lineage extraction: structs, arrays, UNNEST, PIVOT, QUALIFY, windows, MERGE and more.
|
|
5
5
|
Project-URL: Homepage, https://github.com/vamsikapa/bqsqlparse
|
|
6
6
|
Project-URL: Documentation, https://github.com/vamsikapa/bqsqlparse#readme
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bqsqlparse"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "A pure-Python BigQuery (GoogleSQL) parser with column-level lineage extraction: structs, arrays, UNNEST, PIVOT, QUALIFY, windows, MERGE and more."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|