-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWarhol.podspec
More file actions
27 lines (22 loc) · 1.04 KB
/
Warhol.podspec
File metadata and controls
27 lines (22 loc) · 1.04 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
#
# Be sure to run `pod lib lint Warhol.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Warhol"
s.version = "0.2.1"
s.summary = "Face detection made easy."
s.description = <<-DESC
Warhol acts as a wrapper on top of the Apple Vision framework, detecting face features from camera or image input and providing those positions in your own coordinates so you can easily draw on top.
DESC
s.homepage = "https://github.com/toupper/Warhol"
s.license = 'MIT'
s.author = { "César Vargas Casaseca" => "c.vargas.casaseca@gmail.com" }
s.source = { :git => "https://github.com/toupper/Warhol.git", :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.ios.source_files = 'Warhol/Warhol/**/*.{h,m,swift}'
s.swift_version = "5.9"
end