@@ -12,29 +12,29 @@ To get started, create or identify a working directory on your local machine.
1212
1313Open that directory and execute the following command in a terminal session::
1414
15- git clone https://github.com/nexB/scancode-toolkit .git
15+ git clone https://github.com/nexB/skeleton .git
1616
17- That will create an ``/scancode-toolkit `` directory in your working directory.
17+ That will create an ``/skeleton `` directory in your working directory.
1818Now you can install the dependencies in a virtualenv::
1919
20- cd scancode-toolkit
21- ./configure --dev
22- source venv/bin/activate
20+ cd skeleton
21+ ./configure --docs
22+
23+ .. note ::
24+
25+ In case of windows, run ``configure --docs `` instead of this.
2326
24- Now, the following prerequisites should be installed
27+ Now, this will install the following prerequisites:
2528
2629- Sphinx
2730- sphinx_rtd_theme (the format theme used by ReadTheDocs)
2831- docs8 (style linter)
2932
30- ::
31-
32- pip install -e .[docs]
33-
34- These requirements are already present in setup.cfg and this installs them.
33+ These requirements are already present in setup.cfg and `./configure --docs ` installs them.
3534
3635Now you can build the HTML documents locally::
3736
37+ source venv/bin/activate
3838 cd docs
3939 make html
4040
@@ -116,9 +116,10 @@ Style Checks Using ``Doc8``
116116How To Run Style Tests
117117^^^^^^^^^^^^^^^^^^^^^^
118118
119- In the project root, run the following command ::
119+ In the project root, run the following commands ::
120120
121- $ doc8 --max-line-length 100 docs/source/ --ignore D000
121+ $ cd docs
122+ $ ./scripts/doc8_style_check.sh
122123
123124A sample output is::
124125
0 commit comments