data-sitter 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.
- {data_sitter-0.1.0 → data_sitter-0.1.1}/PKG-INFO +2 -2
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/PKG-INFO +2 -2
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/requires.txt +1 -1
- {data_sitter-0.1.0 → data_sitter-0.1.1}/pyproject.toml +2 -2
- {data_sitter-0.1.0 → data_sitter-0.1.1}/setup.py +3 -3
- {data_sitter-0.1.0 → data_sitter-0.1.1}/README.md +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/Contract.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/FieldResolver.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/__init__.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/cli.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/BaseField.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/FloatField.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/IntegerField.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/NumericField.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/StringField.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/field_types/__init__.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/MatchedRule.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/Parser/RuleParser.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/Parser/__init__.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/Parser/alias_parameters_parser.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/Parser/parser_utils.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/Rule.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/RuleRegistry.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/rules/__init__.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/utils/__init__.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter/utils/logger_config.py +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/SOURCES.txt +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/dependency_links.txt +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/entry_points.txt +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/data_sitter.egg-info/top_level.txt +0 -0
- {data_sitter-0.1.0 → data_sitter-0.1.1}/setup.cfg +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: data-sitter
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A Python library that reads data contracts and generates Pydantic models for seamless data validation.
|
5
5
|
Author-email: Lázaro Pereira Candea <lazaro@candea.es>
|
6
6
|
Requires-Dist: python-dotenv==1.0.1
|
7
7
|
Requires-Dist: parse_type==0.6.4
|
8
|
-
Requires-Dist: pydantic==2.10.
|
8
|
+
Requires-Dist: pydantic==2.10.5
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: data-sitter
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A Python library that reads data contracts and generates Pydantic models for seamless data validation.
|
5
5
|
Author-email: Lázaro Pereira Candea <lazaro@candea.es>
|
6
6
|
Requires-Dist: python-dotenv==1.0.1
|
7
7
|
Requires-Dist: parse_type==0.6.4
|
8
|
-
Requires-Dist: pydantic==2.10.
|
8
|
+
Requires-Dist: pydantic==2.10.5
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = 'data-sitter'
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.1"
|
8
8
|
description = "A Python library that reads data contracts and generates Pydantic models for seamless data validation."
|
9
9
|
authors = [
|
10
10
|
{name = 'Lázaro Pereira Candea', email = 'lazaro@candea.es'},
|
@@ -13,7 +13,7 @@ dependencies = [
|
|
13
13
|
# Keep this in sync with setup.py
|
14
14
|
"python-dotenv==1.0.1",
|
15
15
|
"parse_type==0.6.4",
|
16
|
-
"pydantic==2.10.
|
16
|
+
"pydantic==2.10.5",
|
17
17
|
]
|
18
18
|
|
19
19
|
[project.scripts]
|
@@ -3,17 +3,17 @@ from setuptools import setup, find_packages
|
|
3
3
|
|
4
4
|
setup(
|
5
5
|
name='data-sitter',
|
6
|
-
version='0.1.
|
6
|
+
version='0.1.1',
|
7
7
|
packages=find_packages(),
|
8
8
|
install_requires=[
|
9
9
|
# Keep this in sync with pyproject.toml
|
10
10
|
"python-dotenv==1.0.1",
|
11
11
|
"parse_type==0.6.4",
|
12
|
-
"pydantic==2.10.
|
12
|
+
"pydantic==2.10.5",
|
13
13
|
],
|
14
14
|
entry_points={
|
15
15
|
'console_scripts': [
|
16
|
-
|
16
|
+
'data-sitter=data_sitter.cli:main',
|
17
17
|
],
|
18
18
|
},
|
19
19
|
)
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|