forked from allenai/deepfigures-open
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
70 lines (54 loc) · 1.48 KB
/
manage.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""Management commands for the deepfigures project.
``manage.py`` provides an interface to the scripts
automating development activities found in the `scripts`
directory.
See the ``scripts`` directory for examples.
"""
import logging
import sys
import click
from scripts import (
build,
detectfigures,
generatearxiv,
generatepubmed,
testunits)
logger = logging.getLogger(__name__)
LOG_FORMAT = '%(asctime)s:%(levelname)s:%(name)s:%(message)s'
@click.group(
context_settings={
'help_option_names': ['-h', '--help']
})
@click.option(
'--verbose', '-v',
is_flag=True,
help='Turn on verbose logging for debugging purposes.')
@click.option(
'--log-file', '-l',
type=str,
help='Log to the provided file path instead of stdout.')
def manage(verbose, log_file):
"""A high-level interface to admin scripts for deepfigures."""
log_level = logging.DEBUG if verbose else logging.INFO
if log_file:
logging.basicConfig(
filename=log_file,
filemode='a',
format=LOG_FORMAT,
level=log_level)
else:
logging.basicConfig(
stream=sys.stdout,
format=LOG_FORMAT,
level=log_level)
subcommands = [
build.build,
detectfigures.detectfigures,
generatearxiv.generatearxiv,
generatepubmed.generatepubmed,
testunits.testunits
]
for subcommand in subcommands:
manage.add_command(subcommand)
if __name__ == '__main__':
manage()