1#!/usr/bin/perl
2use strict;
3
4use ExtUtils::MakeMaker;
5WriteMakefile(
6    NAME => 'Set::Tiny',
7    ABSTRACT_FROM => 'lib/Set/Tiny.pm',
8    VERSION_FROM => 'lib/Set/Tiny.pm',
9    AUTHOR => 'Stanis Trendelenburg <trendels@cpan.org>',
10    LICENSE => 'perl',
11    PREREQ_PM => {
12        'Test::More' => 0,
13    },
14);
15
16