forked from wlmb/Photonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
70 lines (69 loc) · 2.38 KB
/
Makefile.PL
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 <[email protected]>',
'Guillermo Ortiz <[email protected]>',
'Bernardo S. Mendoza <[email protected]>',
'Jose Samuel Perez-Huerta <[email protected]>',
'Lucila Juarez Reyes <[email protected]>',
'Raksha Singla <[email protected]>',
'Merlyn Jaqueline Juarez-Gutierrez <[email protected]>',
],
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.049', # PDL::Complex->from_native
'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 => '[email protected]: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',
},
},
},
},
);