Skip to content

Instantly share code, notes, and snippets.

@hsaito
Created June 10, 2019 02:33
Show Gist options
  • Save hsaito/d945fb7b5ea236da1c104cbc7ec0767a to your computer and use it in GitHub Desktop.
Save hsaito/d945fb7b5ea236da1c104cbc7ec0767a to your computer and use it in GitHub Desktop.
Anaconda Initialization Script Module Manifest for PowerShell
@{
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