agent-control-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.
- agent_control_sdk-0.0.1/.claude/settings.local.json +14 -0
- agent_control_sdk-0.0.1/.gitignore +44 -0
- agent_control_sdk-0.0.1/LICENSE +21 -0
- agent_control_sdk-0.0.1/PKG-INFO +16 -0
- agent_control_sdk-0.0.1/README.md +3 -0
- agent_control_sdk-0.0.1/pyproject.toml +24 -0
- agent_control_sdk-0.0.1/src/agent_control/__init__.py +3 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Aider
|
|
2
|
+
.aider*
|
|
3
|
+
|
|
4
|
+
# Environment variables
|
|
5
|
+
.env
|
|
6
|
+
|
|
7
|
+
# IntelliJ - Main project file (user-specific or regenerable)
|
|
8
|
+
# This specific .iml file at the root is ignored.
|
|
9
|
+
/lev.iml
|
|
10
|
+
|
|
11
|
+
# IntelliJ - User-specific workspace files and caches
|
|
12
|
+
# IMPORTANT: Most of the .idea directory (modules.xml, jdk.table.xml, .idea/modules/*.iml)
|
|
13
|
+
# SHOULD BE COMMITTED for a portable project setup.
|
|
14
|
+
/.idea/workspace.xml
|
|
15
|
+
/.idea/tasks.xml
|
|
16
|
+
/.idea/**/shelf/
|
|
17
|
+
/.idea/**/sonarlint/
|
|
18
|
+
# If you have other .idea files that are user-specific, add them here.
|
|
19
|
+
# For example, .idea/vcs.xml might be user-specific if you don't want to share VCS mappings.
|
|
20
|
+
|
|
21
|
+
# Python build artifacts and caches
|
|
22
|
+
*.pyc
|
|
23
|
+
__pycache__/
|
|
24
|
+
*.py[cod]
|
|
25
|
+
*.egg-info/
|
|
26
|
+
build/
|
|
27
|
+
dist/
|
|
28
|
+
*.so
|
|
29
|
+
|
|
30
|
+
# Virtual environments
|
|
31
|
+
# This will ignore .venv directories in the project root and any subdirectories (e.g., api/.venv)
|
|
32
|
+
.venv/
|
|
33
|
+
|
|
34
|
+
# Log and profile files
|
|
35
|
+
*.log
|
|
36
|
+
*.prof
|
|
37
|
+
profile.html
|
|
38
|
+
|
|
39
|
+
# Other generated directories
|
|
40
|
+
galileo-prometheus-metrics/
|
|
41
|
+
|
|
42
|
+
# Operating System generated files
|
|
43
|
+
.DS_Store
|
|
44
|
+
Thumbs.db
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025
|
|
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,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-control-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Coming soon...
|
|
5
|
+
Project-URL: Homepage, https://github.com/rungalileo/agent-control
|
|
6
|
+
Author: Lev
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# agent-control-sdk
|
|
15
|
+
|
|
16
|
+
COMING SOON...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agent-control-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Coming soon..."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Lev" }
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/rungalileo/agent-control"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/agent_control"]
|