16 lines
374 B
Python
16 lines
374 B
Python
"""PentestGPT - AI-Powered Penetration Testing Assistant."""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Gelei Deng"
|
|
__license__ = "MIT"
|
|
|
|
from pentestgpt.core.config import PentestGPTConfig, load_config
|
|
from pentestgpt.core.pipeline import PipelineMode, PipelineOrchestrator
|
|
|
|
__all__ = [
|
|
"PentestGPTConfig",
|
|
"PipelineMode",
|
|
"PipelineOrchestrator",
|
|
"load_config",
|
|
]
|