File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
- from __future__ import absolute_import , print_function
3
-
4
- # Import our external dependencies.
5
- import argparse
6
- import os
7
- import re
8
- import sys
9
- import time
10
- from os import path
11
-
12
- import pygments
13
- from markdown import markdown
14
- from pycco .generate_index import generate_index
15
- from pycco .languages import supported_languages
16
- from pycco_resources import css as pycco_css
17
- # This module contains all of our static resources.
18
- from pycco_resources import pycco_template
19
- from pygments import formatters , lexers
20
-
21
2
"""
22
3
"**Pycco**" is a Python port of [Docco](http://jashkenas.github.com/docco/):
23
4
the original quick-and-dirty, hundred-line-long, literate-programming-style
62
43
python setup.py install
63
44
"""
64
45
46
+ from __future__ import absolute_import , print_function
47
+
48
+ # Import our external dependencies.
49
+ import argparse
50
+ import os
51
+ import re
52
+ import sys
53
+ import time
54
+ from os import path
55
+
56
+ import pygments
57
+ from pygments import formatters , lexers
58
+
59
+ from markdown import markdown
60
+ from pycco .generate_index import generate_index
61
+ from pycco .languages import supported_languages
62
+ from pycco_resources import css as pycco_css
63
+ # This module contains all of our static resources.
64
+ from pycco_resources import pycco_template
65
+
65
66
# === Main Documentation Generation Functions ===
66
67
67
68
You can’t perform that action at this time.
0 commit comments