cacheplane 0.0.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.
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Worktrees
|
|
2
|
+
.worktrees/
|
|
3
|
+
.superpowers/
|
|
4
|
+
.claude/worktrees/
|
|
5
|
+
|
|
6
|
+
# Node
|
|
7
|
+
node_modules/
|
|
8
|
+
dist/
|
|
9
|
+
.next/
|
|
10
|
+
deploy/
|
|
11
|
+
|
|
12
|
+
# Nx
|
|
13
|
+
.nx/cache/
|
|
14
|
+
.nx/workspace-data
|
|
15
|
+
tmp/
|
|
16
|
+
apps/website/test-results/
|
|
17
|
+
# Demo media is hosted on Vercel Blob, not committed (see DemoShowcase.tsx /
|
|
18
|
+
# apps/website/scripts/upload-demo-media.md). Keep these binaries out of git.
|
|
19
|
+
apps/website/public/demo/
|
|
20
|
+
cockpit/**/angular/test-results/
|
|
21
|
+
/test-results/
|
|
22
|
+
|
|
23
|
+
# Marketing channel dry-run simulation outputs (ephemeral; see "simulatedAt")
|
|
24
|
+
marketing/channels/marketing/cowork/outbox/dry-runs/
|
|
25
|
+
|
|
26
|
+
# Env
|
|
27
|
+
.env
|
|
28
|
+
.env.local
|
|
29
|
+
|
|
30
|
+
# OS
|
|
31
|
+
.DS_Store
|
|
32
|
+
|
|
33
|
+
.angular
|
|
34
|
+
|
|
35
|
+
# Next.js
|
|
36
|
+
.next
|
|
37
|
+
out
|
|
38
|
+
.vercel
|
|
39
|
+
|
|
40
|
+
# Whitepaper signup data
|
|
41
|
+
apps/website/data/
|
|
42
|
+
|
|
43
|
+
# Python
|
|
44
|
+
__pycache__/
|
|
45
|
+
*.pyc
|
|
46
|
+
*.pyo
|
|
47
|
+
.venv/
|
|
48
|
+
|
|
49
|
+
# LangGraph local runtime
|
|
50
|
+
.langgraph_api/
|
|
51
|
+
|
|
52
|
+
# Local LangGraph deployment deps
|
|
53
|
+
deployments/*/deps/
|
|
54
|
+
# ...but ag-ui-dev commits generated deps/ (Docker build copies them in)
|
|
55
|
+
!deployments/ag-ui-dev/deps/
|
|
56
|
+
!deployments/ag-ui-dev/deps/**
|
|
57
|
+
|
|
58
|
+
# Generated license public key (produced by libs/licensing/scripts/generate-public-key.mjs)
|
|
59
|
+
libs/licensing/src/lib/license-public-key.generated.ts
|
|
60
|
+
|
|
61
|
+
# superpowers brainstorming output
|
|
62
|
+
.superpowers/
|
|
63
|
+
# TypeScript incremental build caches (any project)
|
|
64
|
+
*.tsbuildinfo
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cacheplane
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Namespace placeholder for the cacheplane.* packages.
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# cacheplane
|
|
10
|
+
|
|
11
|
+
This distribution only reserves the `cacheplane` top-level name on PyPI.
|
|
12
|
+
|
|
13
|
+
It contains no importable code. It exists so the `cacheplane` name (the
|
|
14
|
+
organization behind these projects) is owned and cannot be taken by anyone
|
|
15
|
+
else, and so a future `cacheplane.*` namespace remains available.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# cacheplane
|
|
2
|
+
|
|
3
|
+
This distribution only reserves the `cacheplane` top-level name on PyPI.
|
|
4
|
+
|
|
5
|
+
It contains no importable code. It exists so the `cacheplane` name (the
|
|
6
|
+
organization behind these projects) is owned and cannot be taken by anyone
|
|
7
|
+
else, and so a future `cacheplane.*` namespace remains available.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cacheplane"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Namespace placeholder for the cacheplane.* packages."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
|
|
13
|
+
[tool.hatch.build.targets.wheel]
|
|
14
|
+
packages = ["src/cacheplane"]
|
|
File without changes
|