forked from materialsproject/custodian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
executable file
·72 lines (57 loc) · 1.92 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
"""
Deployment file to facilitate releases of custodian.
"""
from __future__ import division
__author__ = "Shyue Ping Ong"
__copyright__ = "Copyright 2012, The Materials Project"
__version__ = "0.1"
__maintainer__ = "Shyue Ping Ong"
__email__ = "[email protected]"
__date__ = "Apr 29, 2012"
import glob
from invoke import task
from monty.os import cd
from custodian import __version__ as ver
@task
def make_doc(ctx):
with cd("docs"):
ctx.run("sphinx-apidoc -o . -f ../custodian")
ctx.run("rm custodian*.tests.rst")
for f in glob.glob("docs/*.rst"):
if f.startswith('docs/custodian') and f.endswith('rst'):
newoutput = []
suboutput = []
subpackage = False
with open(f, 'r') as fid:
for line in fid:
clean = line.strip()
if clean == "Subpackages":
subpackage = True
if not subpackage and not clean.endswith("tests"):
newoutput.append(line)
else:
if not clean.endswith("tests"):
suboutput.append(line)
if clean.startswith("custodian") and not clean.endswith("tests"):
newoutput.extend(suboutput)
subpackage = False
suboutput = []
with open(f, 'w') as fid:
fid.write("".join(newoutput))
ctx.run("make html")
@task
def publish(ctx):
ctx.run("python setup.py release")
@task
def test(ctx):
ctx.run("nosetests")
@task
def setver(ctx):
ctx.run("sed s/version=.*,/version=\\\"{}\\\",/ setup.py > newsetup".format(ver))
ctx.run("mv newsetup setup.py")
@task
def release(ctx):
setver(ctx)
test(ctx)
make_doc(ctx)
publish(ctx)