-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftUIDataVisualization.podspec
More file actions
24 lines (21 loc) · 1.07 KB
/
SwiftUIDataVisualization.podspec
File metadata and controls
24 lines (21 loc) · 1.07 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
Pod::Spec.new do |s|
s.name = 'SwiftUIDataVisualization'
s.version = '1.0.0'
s.summary = 'Charts and data visualization components for SwiftUI.'
s.description = <<-DESC
SwiftUIDataVisualization provides beautiful charts and data visualization
components for SwiftUI. Features include line charts, bar charts, pie charts,
scatter plots, heatmaps, real-time updates, animations, and accessibility support.
DESC
s.homepage = 'https://github.com/muhittincamdali/SwiftUI-Data-Visualization'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Muhittin Camdali' => 'contact@muhittincamdali.com' }
s.source = { :git => 'https://github.com/muhittincamdali/SwiftUI-Data-Visualization.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '15.0'
s.watchos.deployment_target = '8.0'
s.swift_versions = ['5.9', '5.10', '6.0']
s.source_files = 'Sources/**/*.swift'
s.frameworks = 'Foundation', 'SwiftUI'
end