forked from SciSharp/Numpy.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumpy.csproj
More file actions
35 lines (30 loc) · 1.51 KB
/
Numpy.csproj
File metadata and controls
35 lines (30 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Numpy</RootNamespace>
<AssemblyName>Numpy</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Meinrad Recheis</Authors>
<Product>Numpy.NET</Product>
<PackageId>Numpy</PackageId>
<Description>C# bindings for NumPy - a fundamental library for scientific computing, machine learning and AI. Does not require a local Python installation!
</Description>
<Copyright>2019 - Meinrad Recheis</Copyright>
<PackageProjectUrl>https://github.com/SciSharp/Numpy.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/SciSharp/Numpy.NET</RepositoryUrl>
<PackageTags>Data science, Machine Learning, AI, Scientific Computing, NumPy, Linear Algebra, FFT, SVD, Matrix, Python</PackageTags>
<PackageLicenseUrl>https://github.com/SciSharp/Numpy.NET/blob/master/LICENSE</PackageLicenseUrl>
<Version>3.7.1.4</Version>
<PackageIconUrl>https://github.com/SciSharp/Numpy.NET/blob/master/doc/img/numpy.net.icon128.png?raw=true</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\numpy-1.16.3-cp37-cp37m-win_amd64.whl" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\numpy-1.16.3-cp37-cp37m-win_amd64.whl" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Python.Included" Version="3.7.3" />
</ItemGroup>
</Project>