-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpanfile
21 lines (21 loc) · 1.18 KB
/
cpanfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## Additional Perl dependencies for the AMC::Gradescope application.
##
## Dependencies for this project are specified in two places, this file and the
## META files generated by Build.PL. Use this file to specify dependencies that
## cannot be listed in Build.PL, e.g. Git repos and develop phase dependencies.
## To avoid redundant information, do not list dependencies in both places.
##
## Some dependencies must be specified in META in order for cpanm installs to
## work as expected. Configure phase dependencies seem to be ignored by cpanm
## unless they are in META. Also, when this project is installed as a
## dependency of an upstream project, cpanm will only only attempt to install
## this project's depedencies if they are in META.*. If this project uses Git
## repo dependencies, they must either be installed manually or listed in the
## cpanfile of the upstream project. Configure phase Git repo dependencies are
## a special case and *must* be installed manually before attempting to install
## this project directly or as a dependency of another project.
##
on develop => sub {
# Provides `pod2rst` for generating ReST files for Sphinx.
suggests 'Pod::POM::View::Restructured';
};