create_nuget.py 4.15 KB
Newer Older
1
2
# coding: utf-8
"""Script for generating files with NuGet package metadata."""
3
import datetime
Guolin Ke's avatar
Guolin Ke committed
4
import sys
5
6
from pathlib import Path
from shutil import copyfile
Guolin Ke's avatar
Guolin Ke committed
7
8

if __name__ == "__main__":
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    source = Path(sys.argv[1])
    current_dir = Path(__file__).parent.absolute()
    linux_folder_path = current_dir / "runtimes" / "linux-x64" / "native"
    linux_folder_path.mkdir(parents=True, exist_ok=True)
    osx_folder_path = current_dir / "runtimes" / "osx-x64" / "native"
    osx_folder_path.mkdir(parents=True, exist_ok=True)
    windows_folder_path = current_dir / "runtimes" / "win-x64" / "native"
    windows_folder_path.mkdir(parents=True, exist_ok=True)
    build_folder_path = current_dir / "build"
    build_folder_path.mkdir(parents=True, exist_ok=True)
    copyfile(source / "lib_lightgbm.so", linux_folder_path / "lib_lightgbm.so")
    copyfile(source / "lib_lightgbm.dylib", osx_folder_path / "lib_lightgbm.dylib")
    copyfile(source / "lib_lightgbm.dll", windows_folder_path / "lib_lightgbm.dll")
    copyfile(source / "lightgbm.exe", windows_folder_path / "lightgbm.exe")
    version = (current_dir.parent / 'VERSION.txt').read_text(encoding='utf-8').strip().replace('rc', '-rc')
24
    nuget_str = rf"""<?xml version="1.0"?>
Guolin Ke's avatar
Guolin Ke committed
25
26
27
    <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
    <metadata>
        <id>LightGBM</id>
28
        <version>{version}</version>
Guolin Ke's avatar
Guolin Ke committed
29
30
        <authors>Guolin Ke</authors>
        <owners>Guolin Ke</owners>
31
32
        <licenseUrl>https://github.com/microsoft/LightGBM/blob/master/LICENSE</licenseUrl>
        <projectUrl>https://github.com/microsoft/LightGBM</projectUrl>
Guolin Ke's avatar
Guolin Ke committed
33
34
        <requireLicenseAcceptance>false</requireLicenseAcceptance>
        <description>A fast, distributed, high performance gradient boosting framework</description>
35
        <copyright>Copyright {datetime.datetime.now().year} @ Microsoft</copyright>
Guolin Ke's avatar
Guolin Ke committed
36
37
38
39
        <tags>machine-learning data-mining distributed native boosting gbdt</tags>
        <dependencies> </dependencies>
    </metadata>
        <files>
Guolin Ke's avatar
Guolin Ke committed
40
        <file src="build\**" target="build"/>
Guolin Ke's avatar
Guolin Ke committed
41
42
43
        <file src="runtimes\**" target="runtimes"/>
        </files>
    </package>
44
    """
45
    prop_str = r"""
Guolin Ke's avatar
Guolin Ke committed
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup Condition="Exists('packages.config') OR
                            Exists('$(MSBuildProjectName).packages.config') OR
                            Exists('packages.$(MSBuildProjectName).config')">
        <Content Include="$(MSBuildThisFileDirectory)/../runtimes/win-x64/native/*.dll"
                Condition="'$(PlatformTarget)' == 'x64'">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        <Visible>false</Visible>
        </Content>
        <Content Include="$(MSBuildThisFileDirectory)/../runtimes/win-x64/native/*.exe"
                Condition="'$(PlatformTarget)' == 'x64'">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        <Visible>false</Visible>
        </Content>
    </ItemGroup>
    </Project>
62
63
    """
    target_str = r"""
Guolin Ke's avatar
Guolin Ke committed
64
65
66
67
68
69
70
71
72
73
74
75
76
    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <EnableLightGBMUnsupportedPlatformTargetCheck Condition="'$(EnableLightGBMUnsupportedPlatformTargetCheck)' == ''">true</EnableLightGBMUnsupportedPlatformTargetCheck>
    </PropertyGroup>
    <Target Name="_LightGBMCheckForUnsupportedPlatformTarget"
            Condition="'$(EnableLightGBMUnsupportedPlatformTargetCheck)' == 'true'"
            AfterTargets="_CheckForInvalidConfigurationAndPlatform">
        <Error Condition="'$(PlatformTarget)' != 'x64' AND
                        ('$(OutputType)' == 'Exe' OR '$(OutputType)'=='WinExe') AND
                        !('$(TargetFrameworkIdentifier)' == '.NETCoreApp' AND '$(PlatformTarget)' == '')"
            Text="LightGBM currently supports 'x64' processor architectures. Please ensure your application is targeting 'x64'." />
    </Target>
    </Project>
77
    """
78
79
80
    (current_dir / "LightGBM.nuspec").write_text(nuget_str, encoding='utf-8')
    (current_dir / "build" / "LightGBM.props").write_text(prop_str, encoding='utf-8')
    (current_dir / "build" / "LightGBM.targets").write_text(target_str, encoding='utf-8')