Anaconda Initialization Script Module Manifest for PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
RootModule = 'Conda.psm1' | |
ModuleVersion = '1.0.0.0' | |
FunctionsToExport = @( | |
'Initialize-Conda' | |
) | |
CmdletsToExport = '*' | |
VariablesToExport = '*' | |
AliasesToExport = '*' | |
GUID = '23421dee-ca6f-4847-9c93-1268c629964a' | |
Author = 'Hideki Saito' | |
Description = 'Anaconda Initializer' | |
PowerShellVersion = '6.0' | |
CompatiblePSEditions = 'Core' | |
Copyright = '(c) 2019 Hideki Saito. All rights reserved.' | |
PrivateData = @{ | |
PSData = @{ | |
ProjectUri = '' | |
ReleaseNotes = '' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment