Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Add Swift Package Manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
shipinev committed Dec 30, 2019
1 parent 4469cbb commit 9e7e631
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "ReadabilityKit",
platforms: [
.macOS(.v10_12),
.iOS(.v10),
.watchOS(v3),
.tvOS(.v10)
],
products: [
.library(
name: "ReadabilityKit",
targets: ["ReadabilityKit"]
)
],
dependencies: [
.package(
url: "https://github.com/honghaoz/Ji",
from: "5.0.0"
)
],
targets: [
.target(
name: "ReadabilityKit",
dependencies: ["Ji"],
path: "Sources"
),
.testTarget(
name: "ReadabilityKitTests",
dependencies: ["ReadabilityKit"],
path: "Tests"
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 9e7e631

Please sign in to comment.