本文整理汇总了Python中sphinx.apidoc.__file__方法的典型用法代码示例。如果您正苦于以下问题:Python apidoc.__file__方法的具体用法?Python apidoc.__file__怎么用?Python apidoc.__file__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sphinx.apidoc
的用法示例。
在下文中一共展示了apidoc.__file__方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
here = os.path.dirname(__file__)
out = os.path.abspath(os.path.join(here, 'apidocs'))
src = os.path.abspath(os.path.join(here, '..', '{{ cookiecutter.project_slug }}'))
ignore_paths = []
argv = [
"-f",
"-T",
"-e",
"-M",
"-o", out,
src
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例2: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = [
os.path.join('..', '..', 'pulse2percept', '*', 'tests')
]
argv = [
"-f",
"-M",
"-e",
"-E",
"-T",
"-o", "aaapi",
os.path.join('..', 'pulse2percept')
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例3: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
current_dir = os.path.abspath(os.path.dirname(__file__))
module = os.path.join(current_dir, "..", "dipper")
argv = [
"-f",
"-T",
"-e",
"-M",
"-o", current_dir,
module
]
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例4: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = []
argv = [
"-f",
"-o", "source",
".."
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例5: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
for pkg in PACKAGES:
argv = ['-e',
'-o', os.path.join(PATH_HERE, 'api'),
os.path.join(PATH_HERE, PATH_ROOT, pkg),
'**/test_*',
'--force',
'--private',
'--module-first']
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例6: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
here = os.path.dirname(__file__)
out = os.path.abspath(os.path.join(here, 'apidocs'))
src = os.path.abspath(os.path.join(here, '..', 'scriptcwl'))
ignore_paths = []
argv = [
"-f",
"-T",
"-e",
"-M",
"-o", out,
src
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例7: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
for pkg in PACKAGES:
argv = ['-e',
'-o', os.path.join(PATH_HERE, 'api'),
os.path.join(PATH_HERE, PATH_ROOT, pkg),
'tests/*',
'--force']
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例8: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = []
argv = [
'-f',
'-T',
'-M',
'-o', './_apidoc',
'../src/'
] + ignore_paths # yapf: disable
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例9: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = []
argv = [
"-f",
"-o", "apidoc",
"./ocs_ci"
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例10: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = [
]
docs_path = os.path.relpath(os.path.dirname(__file__))
root_path = os.path.relpath(os.path.dirname(os.path.dirname(__file__)))
argv = [
'--force',
'--no-toc',
'--separate',
'--module-first',
'--output-dir', os.path.join(docs_path, 'packages'),
os.path.join(root_path, 'kopf'),
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例11: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
here = os.path.dirname(__file__)
out = os.path.abspath(os.path.join(here, '_apidoc'))
src = os.path.abspath(os.path.join(here, '..'))
ignore_paths = [
os.path.join(src, 'integration_test'),
os.path.join(src, 'setup.py'),
os.path.join(src, 'process_changelog.py'),
os.path.join(src, 'recipyGui', 'tests'),
os.path.join(src, 'recipyCommon', 'tests'),
os.path.join(src, 'recipy', 'tests'),
]
argv = [
"-f",
"-l",
"-e",
"-M",
"-o", out,
src,
] + ignore_paths
print(' '.join(argv))
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例12: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
ignore_paths = [
"../setup.py",
"../tests",
"../travis_pypi_setup.py",
"../versioneer.py"
]
argv = [
"-f",
"-T",
"-e",
"-M",
"-o", ".",
".."
] + ignore_paths
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
示例13: run_apidoc
# 需要导入模块: from sphinx import apidoc [as 别名]
# 或者: from sphinx.apidoc import __file__ [as 别名]
def run_apidoc(_):
os.makedirs(os.path.join(PATH_HERE, 'apidoc'), exist_ok=True)
for pkg in PACKAGES:
argv = ['-e', '-o', os.path.join(PATH_HERE, 'apidoc'),
os.path.join(PATH_HERE, PATH_ROOT, pkg), '**/test_*',
'--force', '--private', '--module-first']
try:
# Sphinx 1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
# Sphinx 1.6 (and earlier)
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)