This repository was archived by the owner on Sep 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetAnalyzer.gemspec
More file actions
37 lines (33 loc) · 1.86 KB
/
NetAnalyzer.gemspec
File metadata and controls
37 lines (33 loc) · 1.86 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
36
37
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'NetAnalyzer/version'
Gem::Specification.new do |spec|
spec.name = "NetAnalyzer"
spec.version = NetAnalyzer::VERSION
spec.authors = ["Elena Rojano, Pedro Seoane"]
spec.email = ["elenarojano@uma.es, seoanezonjic@hotmail.com"]
spec.summary = %q{Network analysis tool that calculate and validate different association indices.}
spec.description = %q{DEPRECATED PROJECT. MIGRATED TO PYTHON: https://github.com/seoanezonjic/NetAnalyzer. NetAnalyzer is a useful network analysis tool developed in Ruby that can 1) analyse any type of unweighted network, regardless of the number of layers, 2) calculate the relationship between different layers, using various association indices (Jaccard, Simpson, PCC, geometric, cosine and hypergeometric) and 3) validate the results}
spec.homepage = "https://github.com/ElenaRojano/NetAnalyzer"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", ">= 13.0.3"
spec.add_development_dependency "rspec"
spec.add_development_dependency "minitest"
spec.add_dependency "cmath", ">= 1.0.0"
spec.add_dependency "numo-linalg", ">= 0.1.5"
spec.add_dependency "numo-narray", ">= 0.9.1.9"
spec.add_dependency "pp", ">= 0.1.0"
spec.add_dependency "npy", ">= 0.2.0"
spec.add_dependency "bigdecimal", ">= 3.0.0"
spec.add_dependency "gv", ">= 0.1.0"
spec.add_dependency "semtools", ">= 0.1.1"
spec.add_dependency "expcalc"
spec.add_dependency "parallel"
spec.add_dependency "rubystats"
spec.add_dependency "red-colors"
end