blob: 40cf60ad35816adf2dd2903326db6e8de7a19269 (
plain)
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
|
--- setup.py.orig 2008-10-23 07:58:41.000000000 -0400
+++ setup.py 2008-10-23 07:58:55.000000000 -0400
@@ -53,15 +53,15 @@
data_files = []
-documentation_path = 'docs/_build/html'
-if os.path.exists(documentation_path):
- documentation_files = []
- for fn in os.listdir(documentation_path):
- if not fn.startswith('.'):
- fn = os.path.join(documentation_path, fn)
- if os.path.isfile(fn):
- documentation_files.append(fn)
- data_files.append(('docs', documentation_files))
+#documentation_path = 'docs/_build/html'
+#if os.path.exists(documentation_path):
+# documentation_files = []
+# for fn in os.listdir(documentation_path):
+# if not fn.startswith('.'):
+# fn = os.path.join(documentation_path, fn)
+# if os.path.isfile(fn):
+# documentation_files.append(fn)
+# data_files.append(('docs', documentation_files))
def get_terminal_width():
|