Added Spreadsheet::ParseExcel
[dbsrgits/SQL-Translator.git] / Makefile.PL
CommitLineData
cfaf3de0 1package SQL::Translator;
2
3use strict;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
7 'NAME' => __PACKAGE__,
cc3742ae 8 'VERSION' => 0.01,
cfaf3de0 9 'EXE_FILES' => [
cc3742ae 10 'bin/auto-dia.pl',
cfaf3de0 11 'bin/sql_translator.pl',
12 ],
13 'PREREQ_PM' => {
000597e5 14 'Class::Base' => 0,
15 'File::Basename' => 0,
16 'File::Spec' => 0,
17 'GD' => 0,
18 'IO::Dir' => 0,
19 'Parse::RecDescent' => 0, # Is a particular version needed?
20 'Pod::Usage' => 0,
21 'Spreadsheet::ParseExcel' => 0,
22 'Text::ParseWords' => 0,
23 'XML::Dumper' => 0,
cfaf3de0 24 },
7a8e1f51 25 clean => {
1740a336 26 FILES => '$(DISTNAME)-$(VERSION).tar.gz',
7a8e1f51 27 },
cfaf3de0 28);
9398955f 29
30