New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
check_pkg.py in NEMO/trunk/doc/tools – NEMO

source: NEMO/trunk/doc/tools/check_pkg.py

Last change on this file was 14257, checked in by nicolasmartin, 3 years ago

Overall review of LaTeX sources (not tested completely as of now):

  • Reworking global files: main document.tex, add glossary.tex, cosmetic changes...
  • Ignore missing namelists (namsbc_isf, namsbc_iscpl and namptr)
  • Removal of references for unused indices (\hfile, \ifile and \jp)
  • Update of .svnignore and svn:ignore properties accordingly
  • Split of manual abstract into a common NEMO abs for all and a specific one for each engine
  • Shrinking variables names used in the frontmatter
  • Property svn:executable set to *
File size: 185 bytes
Line 
1#!/usr/bin/env python3
2
3import sys, importlib
4
5for argv in sys.argv[1:]:
6   try:
7      importlib.import_module(argv)
8   except ImportError:
9      print("Package %s is missing in Python 3" % argv)
10
Note: See TracBrowser for help on using the repository browser.