sqlspec 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.
Potentially problematic release.
This version of sqlspec might be problematic. Click here for more details.
- {sqlspec-0.1.0 → sqlspec-0.1.1}/.pre-commit-config.yaml +1 -1
- {sqlspec-0.1.0 → sqlspec-0.1.1}/PKG-INFO +3 -3
- {sqlspec-0.1.0 → sqlspec-0.1.1}/README.md +1 -1
- {sqlspec-0.1.0 → sqlspec-0.1.1}/pyproject.toml +2 -2
- {sqlspec-0.1.0 → sqlspec-0.1.1}/uv.lock +1 -1
- {sqlspec-0.1.0 → sqlspec-0.1.1}/.gitignore +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/CONTRIBUTING.rst +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/Makefile +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/__metadata__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/_serialization.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/exceptions.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/filters.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/py.typed +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/empty.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/protocols.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/utils/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/utils/dataclass.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tests/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tests/conftest.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/build_docs.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/pypi_readme.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/__init__.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/changelog.py +0 -0
- {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/missing_references.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: sqlspec
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: SQL
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: SQL Experiments in Python
|
|
5
5
|
Author-email: Cody Fincher <cody@litestar.dev>
|
|
6
6
|
Maintainer-email: Litestar Developers <hello@litestar.dev>
|
|
7
7
|
Requires-Python: <4.0,>=3.9
|
|
@@ -22,4 +22,4 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
|
|
23
23
|
# SQLSpec
|
|
24
24
|
|
|
25
|
-
SQL
|
|
25
|
+
SQL Experiments in Python
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
authors = [{ name = "Cody Fincher", email = "cody@litestar.dev" }]
|
|
3
3
|
dependencies = [ "typing-extensions>=4.0.0",
|
|
4
4
|
"eval_type_backport; python_version <= \"3.9\"",]
|
|
5
|
-
description = "SQL
|
|
5
|
+
description = "SQL Experiments in Python"
|
|
6
6
|
maintainers = [
|
|
7
7
|
{ name = "Litestar Developers", email = "hello@litestar.dev" },
|
|
8
8
|
]
|
|
9
9
|
name = "sqlspec"
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.9, <4.0"
|
|
12
|
-
version = "0.1.
|
|
12
|
+
version = "0.1.1"
|
|
13
13
|
|
|
14
14
|
[build-system]
|
|
15
15
|
build-backend = "hatchling.build"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|