|
| 1 | +@{ |
| 2 | +# Script module or binary module file associated with this manifest. |
| 3 | +RootModule = 'Turtle.psm1' |
| 4 | +# Version number of this module. |
| 5 | +ModuleVersion = '0.1' |
| 6 | +# ID used to uniquely identify this module |
| 7 | +GUID = '80a19066-8558-4a56-a279-88464ef47ac8' |
| 8 | +# Author of this module |
| 9 | +Author = 'JamesBrundage' |
| 10 | +# Company or vendor of this module |
| 11 | +CompanyName = 'Start-Automating' |
| 12 | +# Copyright statement for this module |
| 13 | +Copyright = '2025 Start-Automating' |
| 14 | +# Type files (.ps1xml) to be loaded when importing this module |
| 15 | +TypesToProcess = @('Turtle.types.ps1xml') |
| 16 | +# Format files (.ps1xml) to be loaded when importing this module |
| 17 | +# FormatsToProcess = @() |
| 18 | +# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. |
| 19 | +FunctionsToExport = '*' |
| 20 | +# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. |
| 21 | +CmdletsToExport = '*' |
| 22 | +# Variables to export from this module |
| 23 | +VariablesToExport = '*' |
| 24 | +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. |
| 25 | +AliasesToExport = '*' |
| 26 | +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. |
| 27 | +PrivateData = @{ |
| 28 | + PSData = @{ |
| 29 | + # Tags applied to this module. These help with module discovery in online galleries. |
| 30 | + Tags = 'PowerShell', 'Turtle', 'SVG', 'Graphics', 'Drawing', 'L-System', 'Fractal' |
| 31 | + # A URL to the main website for this project. |
| 32 | + ProjectURI = 'https://github.com/PowerShellWeb/Turtle' |
| 33 | + # A URL to the license for this module. |
| 34 | + LicenseURI = 'https://github.com/PowerShellWeb/Turtle/blob/main/LICENSE' |
| 35 | + } |
| 36 | +} |
| 37 | + |
| 38 | +# HelpInfo URI of this module |
| 39 | +# HelpInfoURI = '' |
| 40 | + |
| 41 | +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
| 42 | +# DefaultCommandPrefix = '' |
| 43 | + |
| 44 | +} |
| 45 | + |
0 commit comments