Title: Implement minimal core framework with PL injection and update build config
Key features implemented: - Updated package metadata and dependencies in PKG-INFO, setup files - Added main.py entry point for backward compatibility with README launch method - Enhanced CLI with config options, system info command, and proper signal handling - Implemented minimal PluginManager loading only plugin-loader core plugin - Refactored PluginLoader to follow minimal core design, removed sandbox/isolation complexity - Updated auto-dependency plugin with safer PL injection mechanism and disabled pl_injection - Removed legacy plugin files (firewall, frp_proxy, ftp_server, multi_lang_deploy, ops_toolbox, security_gateway) as functionality moved to core plugin system - Improved gitignore with comprehensive ignore patterns The changes implement a minimal core framework design where only the plugin-loader is directly loaded by the core, with all other plugins managed through the PL injection mechanism, significantly simplifying the architecture.
This commit is contained in:
10
future_oss.egg-info/PKG-INFO
Normal file
10
future_oss.egg-info/PKG-INFO
Normal file
@@ -0,0 +1,10 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: future-oss
|
||||
Version: 1.2.0
|
||||
Summary: Future OSS - 一切皆为插件的开发者工具运行时框架
|
||||
Requires-Python: >=3.10
|
||||
License-File: LICENSE
|
||||
Requires-Dist: click>=8.0
|
||||
Requires-Dist: pyyaml>=6.0
|
||||
Requires-Dist: websockets>=12.0
|
||||
Dynamic: license-file
|
||||
27
future_oss.egg-info/SOURCES.txt
Normal file
27
future_oss.egg-info/SOURCES.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
LICENSE
|
||||
README.md
|
||||
pyproject.toml
|
||||
future_oss.egg-info/PKG-INFO
|
||||
future_oss.egg-info/SOURCES.txt
|
||||
future_oss.egg-info/dependency_links.txt
|
||||
future_oss.egg-info/entry_points.txt
|
||||
future_oss.egg-info/requires.txt
|
||||
future_oss.egg-info/top_level.txt
|
||||
oss/__init__.py
|
||||
oss/cli.py
|
||||
oss/core/context.py
|
||||
oss/logger/logger.py
|
||||
oss/plugin/base.py
|
||||
oss/plugin/capabilities.py
|
||||
oss/plugin/loader.py
|
||||
oss/plugin/manager.py
|
||||
oss/plugin/types.py
|
||||
oss/plugins/auto_dependency.py
|
||||
oss/plugins/firewall.py
|
||||
oss/plugins/frp_proxy.py
|
||||
oss/plugins/ftp_server.py
|
||||
oss/plugins/multi_lang_deploy.py
|
||||
oss/plugins/ops_toolbox.py
|
||||
oss/plugins/security_gateway.py
|
||||
oss/shared/__init__.py
|
||||
oss/shared/router.py
|
||||
1
future_oss.egg-info/dependency_links.txt
Normal file
1
future_oss.egg-info/dependency_links.txt
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
2
future_oss.egg-info/entry_points.txt
Normal file
2
future_oss.egg-info/entry_points.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
[console_scripts]
|
||||
oss = oss.cli:main
|
||||
3
future_oss.egg-info/requires.txt
Normal file
3
future_oss.egg-info/requires.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
click>=8.0
|
||||
pyyaml>=6.0
|
||||
websockets>=12.0
|
||||
1
future_oss.egg-info/top_level.txt
Normal file
1
future_oss.egg-info/top_level.txt
Normal file
@@ -0,0 +1 @@
|
||||
oss
|
||||
Reference in New Issue
Block a user