forked from materialsproject/pymatgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
executable file
·86 lines (65 loc) · 2.31 KB
/
fabfile.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
#!/usr/bin/env python
"""
Deployment file to facilitate releases of pymatgen.
"""
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
import os
from fabric.api import local, lcd
from pymatgen import __version__ as ver
def makedoc():
with lcd("docs"):
local("sphinx-apidoc -o . -f ../pymatgen")
local("rm pymatgen.*.tests.rst")
for f in glob.glob("docs/*.rst"):
if f.startswith('docs/pymatgen') 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("pymatgen") and not clean.endswith("tests"):
newoutput.extend(suboutput)
subpackage = False
suboutput = []
with open(f, 'w') as fid:
fid.write("".join(newoutput))
local("make html")
local("cp favicon.ico ../../docs/pymatgen/html/_static/favicon.ico")
def publish():
local("python setup.py release")
def test():
local("nosetests")
def setver():
local("sed s/version=.*,/version=\\\"{}\\\",/ setup.py > newsetup".format(ver))
local("mv newsetup setup.py")
def update_dev_doc():
makedoc()
with lcd("../docs/pymatgen/html/"):
local("git add .")
local("git commit -a -m \"Update dev docs\"")
local("git push origin gh-pages")
def log_ver():
filepath = os.path.join(os.environ["HOME"], "Dropbox", "Public", "pymatgen", ver)
with open(filepath, "w") as f:
f.write("Release")
def release():
setver()
test()
makedoc()
publish()
log_ver()