powerailabs 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.
- powerailabs-0.1.0/.gitignore +16 -0
- powerailabs-0.1.0/PKG-INFO +13 -0
- powerailabs-0.1.0/pyproject.toml +24 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: powerailabs
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The PowerAI Labs stack — installs the full suite of composable AI-engineering primitives.
|
|
5
|
+
Author: Raghav Mishra
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Requires-Dist: powerailabs-acttrace
|
|
9
|
+
Requires-Dist: powerailabs-cassette
|
|
10
|
+
Requires-Dist: powerailabs-contextkit
|
|
11
|
+
Requires-Dist: powerailabs-core
|
|
12
|
+
Requires-Dist: powerailabs-squeeze
|
|
13
|
+
Requires-Dist: powerailabs-tokenguard
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# The umbrella meta-package: installs the whole stack. Ships NO code.
|
|
2
|
+
# NEVER add a src/ directory or a powerailabs/__init__.py here — it would break the namespace.
|
|
3
|
+
[project]
|
|
4
|
+
name = "powerailabs"
|
|
5
|
+
version = "0.1.0"
|
|
6
|
+
description = "The PowerAI Labs stack — installs the full suite of composable AI-engineering primitives."
|
|
7
|
+
requires-python = ">=3.11"
|
|
8
|
+
license = "MIT"
|
|
9
|
+
authors = [{ name = "Raghav Mishra" }]
|
|
10
|
+
dependencies = [
|
|
11
|
+
"powerailabs-core",
|
|
12
|
+
"powerailabs-tokenguard",
|
|
13
|
+
"powerailabs-contextkit",
|
|
14
|
+
"powerailabs-squeeze",
|
|
15
|
+
"powerailabs-cassette",
|
|
16
|
+
"powerailabs-acttrace",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["hatchling"]
|
|
21
|
+
build-backend = "hatchling.build"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
bypass-selection = true # deps-only meta-package: builds an empty wheel, contributes no code
|