summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 7db0179f50efdf78d72bcae960b6c8aea311fb64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
	dist_version => '1.0',
	license => 'wtfpl',
	module_name => 'Simplestore',
	test_files => 'test/simplestore.t',
);
$build->create_build_script;