2017-01-21 7 views
0

autodocでhtmlを作成しようとするとエラーが発生します。ここでdjangoエラーのあるAutodoc Sphinx

は私のプロジェクト構造である:

projet 
--- app1 
------ models.py 
------ views.py 
--- app2 
--- app3 
docs 
--- modules 
------ models.rst 
--- conf.py 
--- index.rst 
__init__.py 
manage.py 

マイconf.py

import os 
import sys 

sys.path.insert(0, os.path.abspath('..')) 
from django.conf import settings 
settings.configure() 

import django 
django.setup() 

# -- General configuration 

extensions = ['sphinx.ext.autodoc', 
'sphinx.ext.coverage'] 

そして

Models 
====== 
.. automodule:: projet.app1.models 
    :members: 
    :undoc-members: 

私model.rstそして、私はこのエラーをHET:

D:\Agrome\Agrome bitbucket\agrome-backend\docs\modules\models.rst:3: WARNING: autodoc: failed to import module u'agrome.boxes.models'; the following exception was raised: 
    Traceback (most recent call last): 
     File "c:\python27\lib\site-packages\sphinx\ext\autodoc.py", line 547, in import_object 
     __import__(self.modname) 
     File "D:\Agrome\Agrome bitbucket\agrome-backend\agrome\boxes\models.py", line 5, in <module> 
     from django.contrib.auth.models import User 
     File "c:\python27\lib\site-packages\django\contrib\auth\models.py", line 6, in <module> 
     from django.contrib.contenttypes.models import ContentType 
     File "c:\python27\lib\site-packages\django\contrib\contenttypes\models.py", line 161, in <module> 
     class ContentType(models.Model): 
     File "c:\python27\lib\site-packages\django\db\models\base.py", line 102, in __new__ 
     "INSTALLED_APPS." % (module, name) 
RuntimeError: Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS. 

automodule :: projet.app1(whitout .models)と入力すると動作しますが、ドキュメントは空です。

ご存知ですか?

おかげ

+0

ポストあなたのD:\ Agrome \ Agromeビットバケット\ agrome、バックエンド\ agromeボックス\ \ models.py –

答えて

0

は/削除conf.pyでsettings.configure()をコメントアウトしてみたくさん

関連する問題