summaryrefslogtreecommitdiffstats
path: root/WhisperNet/WhisperNet.nuspec
blob: 20cd6238b719555e2af19dd3503bfa0a989e6737 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
	<metadata>
		<id>WhisperNet</id>
		<version>1.7</version>
		<authors>Konstantin, const.me</authors>
		<license type="expression">MPL-2.0</license>
		<projectUrl>https://github.com/Const-me/Whisper</projectUrl>
		<description>High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model</description>
		<releaseNotes>Bugfixes, API documentation</releaseNotes>
		<copyright>Copyright © const.me, 2022-2023</copyright>
		<tags>whisper, gpgpu, speech recognition</tags>
		<repository type="git" url="https://github.com/Const-me/Whisper.git" />
		<dependencies>
			<group targetFramework="net6.0">
				<dependency id="ComLightInterop" version="1.3.7" />
			</group>
		</dependencies>
		<readme>docs/Readme.md</readme>
	</metadata>
	<files>
		<!-- Managed DLL with XML documentation -->
		<file src="bin/Release/WhisperNet.dll" target="lib/net6.0/" />
		<file src="bin/Release/WhisperNet.xml" target="lib/net6.0/" />
		<!-- The C++ DLL -->
		<file src="../x64/Release/Whisper.dll" target="runtimes/win-x64/native/" />
		<file src="Readme.md" target="docs/" />
	</files>
</package>