-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
executable file
·35 lines (30 loc) · 1.21 KB
/
Copy pathPackage.swift
File metadata and controls
executable file
·35 lines (30 loc) · 1.21 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
// 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: "PyWebViews",
platforms: [.iOS(.v13)],
products: [
.library(name: "PyWebViews", targets: ["PyWebViews"])
],
dependencies: [
.package(url: "https://github.com/py-swift/PythonCore", .upToNextMajor(from: .init(311, 0, 0))),
.package(url: "https://github.com/py-swift/PySwiftKit", from: .init(311, 0, 0)),
//.package(url: "https://github.com/KivySwiftLink/SwiftonizePlugin", from: .init(0, 0, 0)),
//.package(path: "../KivyTex"),
//.package(path: "/Volumes/CodeSSD/GitHub/UIViewRender"),
.package(url: "https://github.com/KivySwiftPackages/UIViewRender", .upToNextMajor(from: .init(311, 0, 0))),
.package(url: "https://github.com/KivySwiftPackages/KivyTexture", .upToNextMajor(from: .init(311, 0, 0))),
//.package(path: "../SwiftonizePlugin")
],
targets: [
.target(
name: "PyWebViews",
dependencies: [
.product(name: "SwiftonizeModules", package: "PySwiftKit"),
.product(name: "UIViewRender", package: "UIViewRender"),
.product(name: "KivyTexture", package: "KivyTexture"),
]
)
]
)