PythonObfuscator.psd1

@{
    RootModule        = 'PythonObfuscator.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'e8e715ab-84ca-4eeb-9492-1c985b1949d3'
    Author            = 'Bartosz Wójcik'
    CompanyName       = 'PELock'
    Copyright         = '(c) 2026 Bartosz Wójcik / PELock. All rights reserved.'
    Description       = 'PowerShell Gallery Web API client for Python Obfuscator. Obfuscate, virtualize and protect Python .py source code via the PELock remote API.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'New-PythonObfuscator'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @(
                'Python',
                'Obfuscator',
                'Obfuscation',
                'Virtualizer',
                'VM',
                'PELock',
                'API',
                'Security',
                'SelfDefending'
            )
            LicenseUri   = 'https://www.apache.org/licenses/LICENSE-2.0'
            ProjectUri   = 'https://www.pelock.com/products/python-obfuscator'
            IconUri      = 'https://www.pelock.com/img/en/products/python-obfuscator/python-obfuscator-virtualizer.png'
            ReleaseNotes = @'
## 1.0.0
 
- Initial PowerShell Gallery release
- PythonObfuscator class — Web API client mirroring the Python SDK
- New-PythonObfuscator — factory for the client
- Full strategy flag set including self-defending, protection linker, and anti-analysis options
'@

        }
    }
}