popy.psd1

#
# popy.psd1
#
@{
    ModuleVersion     = '0.2.15'
    GUID              = '22544067-ddb9-4c97-aa91-2503c8125128'
    Author            = 'csw'
    CompanyName       = ''
    Copyright         = '(c) 2025 csw. All rights reserved.'


    RootModule        = 'popy.psm1'

    
    FunctionsToExport = @('popy')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()


    Description       = 'Managing Python versions and virtual environments in Windows PowerShell.'
    PowerShellVersion = '5.1'
    RequiredModules   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('popy', 'python', 'venv')
            LicenseUri   = 'https://github.com/cswhub/popy/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/cswhub/popy'
            ReleaseNotes = 'first publish'
        }
    }
}