ドキュメンテーションシステム 基礎知識

../_images/FE_logo_345_60.png
Fabric Engine version 2.4.0
Copyright (c) 2010-2017 Fabric Software Inc. All rights reserved.

Sphinx のインストール完了したのであれば (http://sphinx-doc.org/) python で以下のようにテストできます:

import sphinx
print sphinx.__version__

Fabric Engine 配布ファイルに含まれる Pythonサブフォルダを python path に追記します。 (例 $FABRIC_DIR/Python/2.7) Fabric Core python クライアントの取得や、ドキュメンテーションシステム専用の sphinx 構文の読み込みに必要です。

どちらもモジュールも以下からテスト可能です:

import FabricEngine.Core as fe
from FabricEngine.Sphinx.ASTWrapper import *

このスニペットがエラーなしに正常に動作するとドキュメント生成準備完了です。