forked from teodesian/Selenium-Remote-Driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
30 lines (24 loc) · 762 Bytes
/
Copy pathMakefile.PL
File metadata and controls
30 lines (24 loc) · 762 Bytes
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
use inc::Module::Install;
name 'Selenium-Remote-Driver';
all_from 'lib/Selenium/Remote/Driver.pm';
author q{"Aditya Ivaturi" <"ivaturi@gmail.com">};
license 'apache';
build_requires 'LWP::Protocol::PSGI';
build_requires 'Test::More';
requires 'LWP::UserAgent';
requires 'HTTP::Headers';
requires 'HTTP::Request';
requires 'Carp';
test_requires 'Carp' => '1.25';
requires 'JSON';
requires 'Net::Ping';
requires 'MIME::Base64';
requires 'IO::Compress::Zip';
resources 'bugtracker' => 'https://github.com/aivaturi/Selenium-Remote-Driver/issues';
resources 'repository' => {
type => 'git',
url => 'git://github.com/aivaturi/Selenium-Remote-Driver.git',
web => 'https://github.com/aivaturi/Selenium-Remote-Driver',
};
auto_install;
WriteAll;