-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
27 lines (25 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "explodify"
version = "0.0.2"
authors = [
{ name="Tanuj Soni", email="tanujsoni027@gmail.com" },
]
description = """Package Description: Explodify
The Explodify package provides functionality for manipulating nested Spark DataFrames.
Explodify reads multiple deeply nested json data into spark dataframes and explodes them to multiple dataframes.
Each dataframe after explosion is related to its parent dataframe by columns id and <child_df>@rankid, hence preserving row-level relations.
To use the Explodify package, simply import it and call the method explode_it on your nested DataFrame.
The package seamlessly integrates with PySpark and provides a clean and easy-to-use interface for working with nested DataFrames."""
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/tanuj24/explodify"
"Bug Tracker" = "https://github.com/tanuj24/explodify/issues"