pumpup-sdk 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.
- pumpup_sdk-0.0.0/.gitignore +85 -0
- pumpup_sdk-0.0.0/LICENSE +21 -0
- pumpup_sdk-0.0.0/PKG-INFO +21 -0
- pumpup_sdk-0.0.0/README.md +5 -0
- pumpup_sdk-0.0.0/pyproject.toml +25 -0
- pumpup_sdk-0.0.0/src/pumpup/__init__.py +3 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
### Java template
|
|
2
|
+
# Compiled class file
|
|
3
|
+
*.class
|
|
4
|
+
|
|
5
|
+
# Log file
|
|
6
|
+
*.log
|
|
7
|
+
|
|
8
|
+
# Visual Studio Code
|
|
9
|
+
.vscode
|
|
10
|
+
.factorypath
|
|
11
|
+
|
|
12
|
+
# Intellij
|
|
13
|
+
*.iml
|
|
14
|
+
|
|
15
|
+
# LSP / Eclipse
|
|
16
|
+
.classpath
|
|
17
|
+
.project
|
|
18
|
+
.settings/
|
|
19
|
+
|
|
20
|
+
# Package Files #
|
|
21
|
+
*.jar
|
|
22
|
+
*.war
|
|
23
|
+
*.nar
|
|
24
|
+
*.ear
|
|
25
|
+
*.zip
|
|
26
|
+
*.tar.gz
|
|
27
|
+
*.rar
|
|
28
|
+
|
|
29
|
+
# Maven
|
|
30
|
+
target/
|
|
31
|
+
pom.xml.tag
|
|
32
|
+
pom.xml.releaseBackup
|
|
33
|
+
pom.xml.versionsBackup
|
|
34
|
+
release.properties
|
|
35
|
+
.flattened-pom.xml
|
|
36
|
+
|
|
37
|
+
# OSX
|
|
38
|
+
.DS_Store
|
|
39
|
+
|
|
40
|
+
# patch
|
|
41
|
+
*.orig
|
|
42
|
+
*.rej
|
|
43
|
+
|
|
44
|
+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
45
|
+
hs_err_pid*
|
|
46
|
+
replay_pid*
|
|
47
|
+
|
|
48
|
+
# Misc dev tooling
|
|
49
|
+
*.pyc
|
|
50
|
+
|
|
51
|
+
# ---------------
|
|
52
|
+
|
|
53
|
+
# Local environment
|
|
54
|
+
.env
|
|
55
|
+
*-service-account.json
|
|
56
|
+
infra/keys/
|
|
57
|
+
.terraform/
|
|
58
|
+
*.pem
|
|
59
|
+
.hk/vendors/
|
|
60
|
+
*.local.*
|
|
61
|
+
# TLS Certificates
|
|
62
|
+
.certs/
|
|
63
|
+
|
|
64
|
+
# PumpUp
|
|
65
|
+
scratch/
|
|
66
|
+
/out/
|
|
67
|
+
*.pid
|
|
68
|
+
jwt.txt
|
|
69
|
+
/.local
|
|
70
|
+
|
|
71
|
+
# AI
|
|
72
|
+
/logs/
|
|
73
|
+
# /tech-docs/plans
|
|
74
|
+
# /tech-docs/chats
|
|
75
|
+
|
|
76
|
+
# FE
|
|
77
|
+
node_modules/
|
|
78
|
+
# frontend/src/rpc/generated/
|
|
79
|
+
|
|
80
|
+
# Deploy-only: vite dist/ copied here during `mise run deploy` so jib bundles it.
|
|
81
|
+
# Local dev uses the vite proxy and never writes here.
|
|
82
|
+
backend/src/main/resources/static/
|
|
83
|
+
/.aiignore
|
|
84
|
+
be-state
|
|
85
|
+
tech-docs/plans/
|
pumpup_sdk-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Pumpup
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pumpup-sdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Operations workspace for AI agents. Placeholder — real release coming soon.
|
|
5
|
+
Project-URL: Homepage, https://pumpup.com
|
|
6
|
+
Project-URL: Repository, https://github.com/pumpupai/pumpup-python
|
|
7
|
+
Author-email: Pump Up <dev@pumpup.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: agents,ai,approvals,hitl
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# pumpup-sdk
|
|
18
|
+
|
|
19
|
+
Placeholder for **Pumpup** — the operations workspace for AI-augmented teams.
|
|
20
|
+
|
|
21
|
+
The real package is on its way. See https://pumpup.com.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pumpup-sdk"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Operations workspace for AI agents. Placeholder — real release coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Pump Up", email = "dev@pumpup.com" }]
|
|
13
|
+
keywords = ["hitl", "agents", "ai", "approvals"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://pumpup.com"
|
|
22
|
+
Repository = "https://github.com/pumpupai/pumpup-python"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["src/pumpup"]
|