forked from SciSharp/Numpy.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumpy.Bare.csproj
More file actions
34 lines (30 loc) · 1.55 KB
/
Numpy.Bare.csproj
File metadata and controls
34 lines (30 loc) · 1.55 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Numpy</RootNamespace>
<AssemblyName>Numpy.Bare</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Meinrad Recheis</Authors>
<Product>Numpy.NET</Product>
<PackageId>Numpy.Bare.OSX</PackageId>
<Description>C# bindings for NumPy - a fundamental library for scientific computing, machine learning and AI. Does require Python 3.7 with NumPy 1.16 installed!
</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, Mac, OSX</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>
<AssemblyVersion>3.6.1.4</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Resources\**" />
<EmbeddedResource Remove="Resources\**" />
<None Remove="Resources\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Python.Runtime.OSX" Version="3.7.0" />
</ItemGroup>
</Project>