arca-agent 0.2.0__tar.gz → 0.2.2__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.
- {arca_agent-0.2.0 → arca_agent-0.2.2}/MANIFEST.in +5 -4
- {arca_agent-0.2.0/arca_agent.egg-info → arca_agent-0.2.2}/PKG-INFO +1 -1
- arca_agent-0.2.2/arca/_cpp_sim.cpython-312-x86_64-linux-gnu.so +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2/arca_agent.egg-info}/PKG-INFO +1 -1
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca_agent.egg-info/SOURCES.txt +1 -0
- arca_agent-0.2.2/arca_agent.egg-info/top_level.txt +3 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/pyproject.toml +8 -21
- arca_agent-0.2.0/arca_agent.egg-info/top_level.txt +0 -1
- {arca_agent-0.2.0 → arca_agent-0.2.2}/README.md +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/__version__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/agents/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/agents/langgraph_orchestrator.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/api/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/api/server.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/cli.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/core/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/core/agent.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/core/config.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/core/trainer.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/cpp_ext/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/cpp_ext/sim_engine.cpp +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/llm/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/llm/providers.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/action.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/custom_network.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/environment.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/host.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/sim/network_generator.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/utils/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/viz/__init__.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca/viz/visualizer.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca_agent.egg-info/dependency_links.txt +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca_agent.egg-info/entry_points.txt +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca_agent.egg-info/not-zip-safe +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/arca_agent.egg-info/requires.txt +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/setup.cfg +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/setup.py +0 -0
- {arca_agent-0.2.0 → arca_agent-0.2.2}/tests/test_arca.py +0 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
include README.md
|
|
2
2
|
include pyproject.toml
|
|
3
3
|
include setup.py
|
|
4
|
-
|
|
4
|
+
include MANIFEST.in
|
|
5
|
+
recursive-include arca *.py *.cpp *.so
|
|
5
6
|
recursive-include tests *.py
|
|
6
|
-
|
|
7
|
+
global-exclude *.pyc *.pyo __pycache__/* *.log
|
|
7
8
|
prune arca_outputs
|
|
8
|
-
prune
|
|
9
|
-
|
|
9
|
+
prune arca_test_visuals
|
|
10
|
+
prune docs
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "arca-agent"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "ARCA — Local RL-powered Autonomous Cyber Pentesting Agent with LangGraph"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -25,27 +25,14 @@ arca = "arca.cli:main"
|
|
|
25
25
|
requires = ["setuptools>=68", "wheel", "pybind11>=2.11"]
|
|
26
26
|
build-backend = "setuptools.build_meta"
|
|
27
27
|
|
|
28
|
-
[tool.setuptools]
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"arca.api",
|
|
33
|
-
"arca.core",
|
|
34
|
-
"arca.llm",
|
|
35
|
-
"arca.sim",
|
|
36
|
-
"arca.utils",
|
|
37
|
-
"arca.viz",
|
|
38
|
-
"arca.cpp_ext"
|
|
39
|
-
]
|
|
40
|
-
include-package-data = true
|
|
41
|
-
zip-safe = false
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["."]
|
|
30
|
+
include = ["arca*"]
|
|
31
|
+
exclude = ["tests*", "examples*"]
|
|
42
32
|
|
|
43
33
|
[tool.setuptools.package-data]
|
|
44
34
|
"arca.cpp_ext" = ["*.cpp"]
|
|
45
35
|
|
|
46
|
-
[tool.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
[tool.pytest.ini_options]
|
|
50
|
-
testpaths = ["tests"]
|
|
51
|
-
addopts = "-v --tb=short"
|
|
36
|
+
[tool.setuptools]
|
|
37
|
+
include-package-data = true
|
|
38
|
+
zip-safe = false
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
arca
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|