ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Python Sphinx
    Language/Python 2020. 11. 16. 19:21

    pip 설치

    macbook:notebooks mios$ pip3 install sphinx

    작업 폴더 이동

    macbook:/ mios$ cd Volumes/data_mb2/PycharmProjects/ProjectName

    스핑크스 실행

    macbook:ProjectName mios$ sphinx-quickstart
    
    Welcome to the Sphinx 1.8.3 quickstart utility.
    
    Please enter values for the following settings (just press Enter to
    accept a default value, if one is given in brackets).
    
    Selected root path: .
    
    You have two options for placing the build directory for Sphinx output.
    Either, you use a directory "_build" within the root path, or you separate
    "source" and "build" directories within the root path.
    > Separate source and build directories (y/n) [n]:
    
    Inside the root directory, two more directories will be created; "_templates"
    for custom HTML templates and "_static" for custom stylesheets and other static
    files. You can enter another prefix (such as ".") to replace the underscore.
    > Name prefix for templates and static dir [_]:
    
    The project name will occur in several places in the built documentation.
    > Project name: Arietta
    > Author name(s): Somi Han
    > Project release []: 0.1
    
    If the documents are to be written in a language other than English,
    you can select a language here by its language code. Sphinx will then
    translate text that it generates into that language.
    
    For a list of supported codes, see
    http://sphinx-doc.org/config.html#confval-language.
    
    > Project language [en]:
    The file name suffix for source files. Commonly, this is either ".txt"
    or ".rst". Only files with this suffix are considered documents.
    > Source file suffix [.rst]:
    
    One document is special in that it is considered the top node of the
    "contents tree", that is, it is the root of the hierarchical structure
    of the documents. Normally, this is "index", but if your "index"
    document is a custom template, you can also set this to another filename.
    > Name of your master document (without suffix) [index]:
    Indicate which of the following Sphinx extensions should be enabled:
    > autodoc: automatically insert docstrings from modules (y/n) [n]: y
    > doctest: automatically test code snippets in doctest blocks (y/n) [n]:
    > intersphinx: link between Sphinx documentation of different projects (y/n) [n]: y
    > todo: write "todo" entries that can be shown or hidden on build (y/n) [n]: y
    > coverage: checks for documentation coverage (y/n) [n]:
    > imgmath: include math, rendered as PNG or SVG images (y/n) [n]:
    > mathjax: include math, rendered in the browser by MathJax (y/n) [n]:
    > ifconfig: conditional inclusion of content based on config values (y/n) [n]:
    > viewcode: include links to the source code of documented Python objects (y/n) [n]: y
    > githubpages: create .nojekyll file to publish the document on GitHub pages (y/n) [n]:
    
    A Makefile and a Windows command file can be generated for you so that you
    only have to run e.g. `make html' instead of invoking sphinx-build
    directly.
    
    > Create Makefile? (y/n) [y]:
    > Create Windows command file? (y/n) [y]:
    Creating file ./conf.py.
    Creating file ./index.rst.
    Creating file ./Makefile.
    Creating file ./make.bat.
    
    Finished: An initial directory structure has been created.
    
    You should now populate your master file ./index.rst and create other documentation
    source files. Use the Makefile to build the docs, like so:
    make builder
    where "builder" is one of the supported builders, e.g. html, latex or linkcheck.

    문서화 자동 생성 도구 실행

    -F -o [결과 폴더] [문서화 대상 소스 폴더] [문서화 대상 제외 폴더...]
    macbook:ProjectName mios$ sphinx-apidoc -F -o docs . --separate
    Creating file docs/ProjectName.conf.rst.
    Creating file docs/ProjectName.media_player.rst.
    Creating file docs/ProjectName.trilateration.rst.
    Creating file docs/ProjectName.rst.
    Creating file docs/conf.py.
    Creating file docs/index.rst.
    Creating file docs/Makefile.
    Creating file docs/make.bat.

    conf.py 경로 수정

    make html

    macbook:ProjectName mios$ cd docs
    macbook:docs mios$ make clean
    macbook:docs mios$ make html

    Reference

    https://tech.ssut.me/start-python-documentation-using-sphinx/
    http://www.hanul93.com/python-sphinx/

    'Language > Python' 카테고리의 다른 글

    Python 설치, 개발환경 구축 (Ubuntu, macOS)  (0) 2020.11.16
Designed by Tistory.