ttd-databricks 1.0.3__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: ttd-databricks
3
+ Version: 1.0.3
4
+ Summary: Client implementation and helper functions for integrating with the TTD Databricks services.
5
+ Author: The Trade Desk
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
11
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ttd-databricks"
7
+ version = "1.0.3"
8
+ description = "Client implementation and helper functions for integrating with the TTD Databricks services."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "The Trade Desk"}
14
+ ]
15
+
16
+ dependencies = []
17
+
18
+ [project.optional-dependencies]
19
+ dev = [
20
+ "pytest>=7.0.0",
21
+ "pytest-cov>=4.0.0",
22
+ ]
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = ["."]
26
+ include = ["ttd_databricks_python*"]
27
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ """Placeholder unit tests for ttd_databricks_python."""
2
+
3
+ import unittest
4
+
5
+
6
+ class TestPlaceholder(unittest.TestCase):
7
+ """Placeholder test class."""
8
+
9
+ def test_placeholder(self):
10
+ """Placeholder test that always passes."""
11
+ pass
12
+
13
+
14
+ if __name__ == "__main__":
15
+ unittest.main()
16
+
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: ttd-databricks
3
+ Version: 1.0.3
4
+ Summary: Client implementation and helper functions for integrating with the TTD Databricks services.
5
+ Author: The Trade Desk
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
11
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
@@ -0,0 +1,8 @@
1
+ pyproject.toml
2
+ tests/test_placeholder.py
3
+ ttd_databricks.egg-info/PKG-INFO
4
+ ttd_databricks.egg-info/SOURCES.txt
5
+ ttd_databricks.egg-info/dependency_links.txt
6
+ ttd_databricks.egg-info/requires.txt
7
+ ttd_databricks.egg-info/top_level.txt
8
+ ttd_databricks_python/__init__.py
@@ -0,0 +1,4 @@
1
+
2
+ [dev]
3
+ pytest>=7.0.0
4
+ pytest-cov>=4.0.0
@@ -0,0 +1 @@
1
+ ttd_databricks_python
@@ -0,0 +1,2 @@
1
+ """Client implementation and helper functions for integrating with the TTD Databricks services.
2
+ """