-
Notifications
You must be signed in to change notification settings - Fork 323
/
Package.swift
61 lines (59 loc) · 1.71 KB
/
Package.swift
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "whisperkit",
platforms: [
.iOS(.v16),
.macOS(.v13),
],
products: [
.library(
name: "WhisperKit",
targets: ["WhisperKit"]
),
.executable(
name: "whisperkit-cli",
targets: ["WhisperKitCLI"]
),
],
dependencies: [
.package(url: "https://github.com/huggingface/swift-transformers.git", exact: "0.1.8"),
.package(url: "https://github.com/apple/swift-argument-parser.git", exact: "1.3.0"),
],
targets: [
.target(
name: "WhisperKit",
dependencies: [
.product(name: "Transformers", package: "swift-transformers"),
]
),
.executableTarget(
name: "WhisperKitCLI",
dependencies: [
"WhisperKit",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
name: "WhisperKitTests",
dependencies: [
"WhisperKit",
.product(name: "Transformers", package: "swift-transformers"),
],
path: ".",
exclude: [
"Examples",
"Sources",
"Makefile",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
],
resources: [
.process("Tests/WhisperKitTests/Resources"),
.copy("Models/whisperkit-coreml"),
]
),
]
)