-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathMatplotlibCS.nuspec
28 lines (28 loc) · 1.37 KB
/
MatplotlibCS.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MatplotlibCS</id>
<version>$version$</version>
<title>MatplotlibCS</title>
<authors>Pavel Koryakin</authors>
<owners>Pavel Koryakin</owners>
<licenseUrl>http://www.opensource.org/licenses/MIT</licenseUrl>
<projectUrl>https://github.com/ITGlobal/MatplotlibCS</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# wrapper which allows to easily build charts using Python Matplotlib</description>
<releaseNotes>Stable version with ability to plot 2D lines and histograms.</releaseNotes>
<copyright>Copyright 2016</copyright>
<tags>c# matplotlib plot chart charting</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="11.0.2" />
<dependency id="NLog" version="4.5.6" />
</dependencies>
<summary>C# wrapper which allows to easily build charts using Python Matplotlib</summary>
</metadata>
<files>
<file src="out\netstandard2.0\MatplotlibCS.dll" target="lib\netstandard2.0" />
<file src="out\netstandard2.0\MatplotlibCS.deps.json" target="lib\netstandard2.0" />
<file src="out\netstandard2.0\MatplotlibCS.pdb" target="lib\netstandard2.0" />
<file src="out\netstandard2.0\Python\*" target="content\MatplotlibCS" />
</files>
</package>