TDS-Fabric 0.0.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.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: TDS_Fabric
3
+ Version: 0.0.1
4
+ Summary: Tosch Data Solutions Brondata Library
5
+ Author-email: Tosch Data Solutions <data@tosch.nl>
6
+ Classifier: Development Status :: 3 - Alpha
7
+ Classifier: License :: OSI Approved :: Python Software Foundation License
8
+ Classifier: Natural Language :: English
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Introduction
16
+ TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
17
+
18
+ # Getting Started
19
+ TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
20
+ 1. Installation process
21
+ 2. Software dependencies
22
+ 3. Latest releases
23
+ 4. API references
24
+
25
+ # Build and Test
26
+ TODO: Describe and show how to build your code and run the tests.
27
+
28
+ # Contribute
29
+ TODO: Explain how other users and developers can contribute to make your code better.
30
+
31
+ If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
32
+ - [ASP.NET Core](https://github.com/aspnet/Home)
33
+ - [Visual Studio Code](https://github.com/Microsoft/vscode)
34
+ - [Chakra Core](https://github.com/Microsoft/ChakraCore)
@@ -0,0 +1,20 @@
1
+ # Introduction
2
+ TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
3
+
4
+ # Getting Started
5
+ TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
6
+ 1. Installation process
7
+ 2. Software dependencies
8
+ 3. Latest releases
9
+ 4. API references
10
+
11
+ # Build and Test
12
+ TODO: Describe and show how to build your code and run the tests.
13
+
14
+ # Contribute
15
+ TODO: Explain how other users and developers can contribute to make your code better.
16
+
17
+ If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
18
+ - [ASP.NET Core](https://github.com/aspnet/Home)
19
+ - [Visual Studio Code](https://github.com/Microsoft/vscode)
20
+ - [Chakra Core](https://github.com/Microsoft/ChakraCore)
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "TDS_Fabric"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Tosch Data Solutions", email="data@tosch.nl" },
10
+ ]
11
+ description = "Tosch Data Solutions Brondata Library"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ classifiers = [
15
+ "Development Status :: 3 - Alpha",
16
+ "License :: OSI Approved :: Python Software Foundation License",
17
+ "Natural Language :: English",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Software Development :: Libraries :: Python Modules"
21
+ ]
@@ -0,0 +1,4 @@
1
+ from pyspark.sql import Functions as F
2
+ from pyspark.sql.types import *
3
+
4
+ print("HEllo World!!!")