Skip to content

Commit d7169fd

Browse files
authored
Create Package.swift
1 parent 4306898 commit d7169fd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Package.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "azure-storage-python",
7+
products: [
8+
.library(
9+
name: "azure-storage-python",
10+
targets: ["azure-storage-python"]
11+
)
12+
],
13+
targets: [
14+
.target(
15+
name: "azure-storage-python",
16+
path: "azure-storage-python"
17+
),
18+
.testTarget(
19+
name: "azure-storage-python-Tests",
20+
dependencies: ["azure-storage-python"]
21+
),
22+
]
23+
)

0 commit comments

Comments
 (0)