forked from CenterForOpenScience/modular-file-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
93 lines (78 loc) · 2.22 KB
/
tasks.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*- coding: utf-8 -*-
import os
import sys
import shutil
from invoke import task, run
docs_dir = 'docs'
build_dir = os.path.join(docs_dir, '_build')
HERE = os.path.abspath(os.path.dirname(__file__))
@task
def init_player():
src = os.path.join(HERE, 'player', 'mfr_config_local.py.example')
dest = os.path.join(HERE, 'player', 'mfr_config_local.py')
if not os.path.exists(dest):
print('Copying {src} to {dest}'.format(**locals()))
shutil.copy(src, dest)
@task
def clean_player():
"""Remove mfr assets from the player's static folder."""
player_static_dir = os.path.join(HERE, 'player', 'static', 'mfr')
print('Removing player static directory')
shutil.rmtree(player_static_dir)
@task
def player(clean=False):
"""Run the player app."""
init_player()
if clean:
clean_player()
from player import create_app
app = create_app()
app.run(host=app.config.get('HOST'), port=app.config.get('PORT'))
@task
def test():
run('python setup.py test', pty=True)
@task
def clean():
run("rm -rf build")
run("rm -rf dist")
run("rm -rf mfr.egg-info")
clean_docs()
print("Cleaned up.")
@task
def clean_docs():
run("rm -rf %s" % build_dir)
@task
def browse_docs():
platform = str(sys.platform).lower()
command = {'darwin': 'open ',
'linux': 'idle ',
'win32': '',
}
cmd = command.get(platform)
if cmd:
run("{0}{1}".format(cmd, os.path.join(build_dir, 'index.html')))
else:
print "Unsure how to open the built file on this operating system."
sys.exit(1)
@task
def docs(clean=False, browse=False):
if clean:
clean_docs()
run("sphinx-build %s %s" % (docs_dir, build_dir), pty=True)
if browse:
browse_docs()
@task
def readme(browse=False):
run('rst2html.py README.rst > README.html')
@task
def publish(test=False):
"""Publish to the cheeseshop."""
try:
__import__('wheel')
except ImportError:
print("wheel required. Run `pip install wheel`.")
sys.exit(1)
if test:
run('python setup.py register -r test sdist bdist_wheel upload -r test')
else:
run("python setup.py register sdist bdist_wheel upload")