sparkctl 0.1.0__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.
- sparkctl-0.1.0/PKG-INFO +19 -0
- sparkctl-0.1.0/README.md +3 -0
- sparkctl-0.1.0/pyproject.toml +24 -0
- sparkctl-0.1.0/src/sparkctl/__init__.py +0 -0
sparkctl-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sparkctl
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Orchestrates Spark standalone clusters on HPCs.
|
|
5
|
+
Author-email: Daniel Thom <daniel.thom@nrel.gov>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
Classifier: Development Status :: 4 - Beta
|
|
8
|
+
Classifier: Programming Language :: Python
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
14
|
+
Requires-Python: <3.14,>=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# sparkctl
|
|
18
|
+
This package extends the Apache Spark launcher scripts to support ephemeral clusters on HPC
|
|
19
|
+
compute nodes.
|
sparkctl-0.1.0/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sparkctl"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Orchestrates Spark standalone clusters on HPCs."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11, <3.14"
|
|
11
|
+
license = "BSD-3-Clause"
|
|
12
|
+
keywords = []
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Daniel Thom", email = "daniel.thom@nrel.gov" },
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Programming Language :: Python",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
23
|
+
"Programming Language :: Python :: Implementation :: PyPy",
|
|
24
|
+
]
|
|
File without changes
|