dspatch-sdk 0.0.1__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,67 @@
1
+ # Yarn Berry
2
+ .yarn/*
3
+ !.yarn/patches
4
+ !.yarn/plugins
5
+ !.yarn/releases
6
+ !.yarn/sdks
7
+ !.yarn/versions
8
+ .pnp.*
9
+
10
+ # Dependencies
11
+ node_modules/
12
+
13
+ # Build outputs
14
+ dist/
15
+ build/
16
+ *.tsbuildinfo
17
+
18
+ # Prisma generated
19
+ apps/api/src/generated/
20
+
21
+ # Environment
22
+ .env
23
+ .env.local
24
+ .env.*.local
25
+
26
+ # IDE
27
+ .idea/
28
+ .vscode/*
29
+ !.vscode/extensions.json
30
+ !.vscode/settings.json
31
+ *.swp
32
+ *.swo
33
+ *~
34
+
35
+ # OS
36
+ .DS_Store
37
+ Thumbs.db
38
+ Desktop.ini
39
+
40
+ # Logs
41
+ logs/
42
+ *.log
43
+ npm-debug.log*
44
+ yarn-debug.log*
45
+ yarn-error.log*
46
+
47
+ # Testing
48
+ coverage/
49
+
50
+ # Tauri
51
+ apps/web/src-tauri/target/
52
+ apps/web/src-tauri/binaries/
53
+
54
+ # Python
55
+ apps/agent-engine/.venv/
56
+ apps/agent-engine/__pycache__/
57
+ apps/agent-engine/src/__pycache__/
58
+ apps/agent-engine/**/__pycache__/
59
+ apps/agent-engine/dist/
60
+ apps/agent-engine/build/
61
+ apps/agent-engine/*.spec
62
+ *.pyc
63
+ *.pyo
64
+ .pytest_cache/
65
+
66
+ # Docker
67
+ docker-compose.override.yml
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: dspatch-sdk
3
+ Version: 0.0.1
4
+ Summary: d:spatch — Agent orchestration platform SDK
5
+ Author-email: dspatch <hello@dspatch.dev>
6
+ License-Expression: MIT
7
+ Requires-Python: >=3.10
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "dspatch-sdk"
7
+ version = "0.0.1"
8
+ description = "d:spatch — Agent orchestration platform SDK"
9
+ requires-python = ">=3.10"
10
+ license = "MIT"
11
+ authors = [
12
+ { name = "dspatch", email = "hello@dspatch.dev" }
13
+ ]
14
+
15
+ [tool.hatch.build.targets.wheel]
16
+ packages = ["src/dspatch-sdk"]
@@ -0,0 +1 @@
1
+ """d:spatch — Agent orchestration platform SDK."""