Update cctext deployment - use pip install

This commit is contained in:
IRBorisov 2024-06-14 14:09:17 +03:00
parent 83d8edd133
commit 06c34b7966
5 changed files with 19 additions and 14 deletions

Binary file not shown.

View File

@ -1,18 +1,23 @@
$version = Get-Content VERSION $version = Get-Content VERSION
$config = @{ $config = @{
'Path' = '.\ConceptDeploy\ConceptDeploy.psd1' 'Path' = '.\ConceptDeploy\ConceptDeploy.psd1'
'Author' = 'IRBorisov' 'Author' = 'IRBorisov'
'CompanyName' = 'CIHT Concept' 'CompanyName' = 'CIHT Concept'
'ModuleVersion' = "$version" 'ModuleVersion' = "$version"
'RootModule' = 'ConceptDeploy.psm1' 'RootModule' = 'ConceptDeploy.psm1'
'FunctionsToExport' = @('Initialize-Python', 'Install-PythonLibs', 'Install-PSLatest', 'Push-PythonPackage', 'Push-DLL', 'Expand-TarGZ' 'FunctionsToExport' = @(
'Get-ExchangePath', 'Get-ProjectsPath', 'Get-ServerDistr', 'Get-ConceptLocal', 'Install-PSLatest',
'Save-DistrManifest', 'Open-DistrManifest', 'Install-Product', 'Enable-Product', 'Disable-Product') 'Initialize-Python', 'Install-PythonLibs',
'CmdletsToExport' = @() 'Push-PythonPackage', 'Push-DLL', 'Expand-TarGZ',
'Get-ExchangePath', 'Get-ProjectsPath', 'Get-ServerDistr', 'Get-ConceptLocal',
'Save-DistrManifest', 'Open-DistrManifest',
'Install-Product', 'Enable-Product', 'Disable-Product'
)
'CmdletsToExport' = @()
'VariablesToExport' = '' 'VariablesToExport' = ''
'AliasesToExport' = @() 'AliasesToExport' = @()
'Description' = 'CIHT Concept tools deployment module' 'Description' = 'CIHT Concept tools deployment module'
} }
New-ModuleManifest @config New-ModuleManifest @config

Binary file not shown.

View File

@ -2,11 +2,11 @@
$global:globalLibs = @( $global:globalLibs = @(
'pywin32', 'pywin32',
'pandas' 'pandas',
'cctext'
) )
$global:localLibs = @( $global:localLibs = @(
'cctext',
'vbatopy' 'vbatopy'
) )

View File

@ -1 +1 @@
3.0.1 3.1.0