我正在尝试使用sphinx(与autodocand结合使用numpydoc)来记录我的模块,但在基本设置之后,运行make html只生成基本的 html,不包含任何文档字符串。我正在运行Python 3.3,项目结构的大纲如下:
Kineticlib
|--docs
| |--build
| |--source
| | |--conf.py
|--src
| |--kineticmulti
| | |--__init__.py
| | |--file1.py
| | |--file2.py
|--setup.py
__init__.py是空的,在我添加conf.py的目录中docs/sourcesys.path.insert(0, os.path.abspath('../..'))
make html在目录中运行docs会给出以下输出:
sphinx-build -b html -d build/doctrees source build/html
Running Sphinx v1.2.2
loading pickled environment... done
building [html]: targets for 0 source files that are out of date
updating environment: 0 added, 0 changed, 0 removed
looking for now-outdated files... none found
no targets are out of date.
Build finished. The HTML pages are in build/html.
那么,我做错了什么?