soda-tests 4.0.5__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.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: soda-tests
3
+ Version: 4.0.5
4
+ Summary: Soda Core Tests
5
+ Requires-Python: >=3.9
6
+ Requires-Dist: soda-core==4.0.5
7
+ Requires-Dist: pytz
8
+ Requires-Dist: python-dateutil
9
+ Dynamic: requires-dist
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env python
2
+
3
+ import sys
4
+
5
+ from setuptools import setup
6
+
7
+ if sys.version_info < (3, 9):
8
+ print("Error: soda-core requires at least Python 3.9")
9
+ print("Error: Please upgrade your Python version to 3.9 or later")
10
+ sys.exit(1)
11
+
12
+ package_name = "soda-tests"
13
+ package_version = "4.0.5"
14
+ description = "Soda Core V4 Tests"
15
+
16
+ requires = [f"soda-core=={package_version}", "pytz", "python-dateutil"]
17
+
18
+ setup(
19
+ name=package_name,
20
+ version=package_version,
21
+ install_requires=requires,
22
+ description="Soda Core Tests",
23
+ package_dir={"": "src"},
24
+ package_data={"": ["**/*.json"]},
25
+ include_package_data=True,
26
+ python_requires=">=3.9",
27
+ )