-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile.PL
More file actions
70 lines (69 loc) · 2.4 KB
/
Makefile.PL
File metadata and controls
70 lines (69 loc) · 2.4 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME=> 'Photonic',
AUTHOR=> [
'W. Luis Mochan <mochan@fis.unam.mx>',
'Guillermo Ortiz <gortiz@exa.unne.edu.ar>',
'Bernardo S. Mendoza <bms@cio.mx>',
'Jose Samuel Perez-Huerta <jsperez@fisica.uaz.edu.mx>',
'Lucila Juarez Reyes <lucilajuarezreyes@gmail.com>',
'Raksha Singla <raksharuia@gmail.com>',
'Merlyn Jaqueline Juarez-Gutierrez <merlynj@icf.unam.mx>',
],
ABSTRACT=> 'A perl package for calculations on photonics and metamaterials.',
VERSION_FROM => 'lib/Photonic.pm',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.16.0', # so PDL::FFTW3 also installs
PREREQ_PM => {
'Carp' => '0',
'IO::File' => '0',
'List::Util' => '0',
'Machine::Epsilon' => '0',
'Moo' => '0',
'namespace::autoclean' => '0',
'Type::Tiny' => '0',
'MooX::StrictConstructor' => '0',
'PDL' => '2.093', # PDL::Complex->from_native, inner for complex
'PDL::Constants' => '0',
'PDL::Core' => '0',
'PDL::Core::Dev' => '0',
'PDL::IO::Pic' => '0',
'PDL::IO::Storable' => '0',
'PDL::IO::FastRaw' => '0',
'PDL::Lite' => '0',
'PDL::MatrixOps' => '0',
'PDL::NiceSlice' => '0',
'PDL::FFTW3' => '0.15', # fix ifftn bug
'PDL::LinearAlgebra' => '0.20', # native-complex fixes
'Storable' => '0',
},
TEST_REQUIRES => {
'Machine::Epsilon' => '0',
'Test::More' => '0.88',
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
META_MERGE => {
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
repository => {
type => 'git',
url => 'git@github.com:wlmb/Photonic.git',
web => 'https://github.com/wlmb/Photonic',
},
},
prereqs => {
develop => {
requires => {
'Test::Pod' => '1.22',
'Test::Pod::Coverage' => '1.08',
'Test::Version' => '1.003001',
},
},
},
},
);