Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adfdc18 commit 190781dCopy full SHA for 190781d
2 files changed
MANIFEST.in
@@ -22,6 +22,12 @@ exclude doc/manual/*.log
22
exclude doc/manual/*.out
23
exclude doc/manual/*.pl
24
exclude doc/manual/*.tex
25
+exclude doc/build/doctrees/*
26
+exclude doc/build/latex/*
27
+exclude doc/build/html/_sources/*
28
+
29
30
31
32
global-exclude *~
33
global-exclude *.flc
setup.py
@@ -52,15 +52,10 @@
52
# target_update()
53
54
def oscmd(s):
55
- cwd = os.getcwd()
56
- for l in textwrap.dedent(s).splitlines():
57
- print ">", l.strip()
58
- os.system(l.strip())
+ print ">", s
+ os.system(s)
59
60
- os.chdir(cwd)
61
-
62
- oscmd("""\
63
- cd doc && python do_sphinx.py""")
+ oscmd("cd doc && python do_sphinx.py")
64
65
oscmd("cd doc && gzip -9c ipython.1 > ipython.1.gz")
66
oscmd("cd doc && gzip -9c pycolor.1 > pycolor.1.gz")
0 commit comments