-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
50 lines (40 loc) · 1023 Bytes
/
buildout.cfg
File metadata and controls
50 lines (40 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[buildout]
parts =
sphinx
generate-docs
extensions = mr.developer
auto-checkout =
sphinx.themes.plone
versions = versions
[generate-docs]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
${buildout:bin-directory}/sphinx-apidoc -o docs/api src/ploneintranet
${buildout:bin-directory}/sphinx-build docs docs/html
mode = 755
output = ${buildout:bin-directory}/generate-docs
[sphinx]
recipe = zc.recipe.egg
eggs =
Sphinx
sphinx.themes.plone
sphinxcontrib-spelling
pyenchant
# ctypes # this bugger not being available was the cause of pyenchant not being installable. Unfortunately it doesn't install on macos.
[sources]
sphinx.themes.plone = git https://github.com/plone/sphinx.themes.plone.git
[versions]
collective.recipe.template = 1.11
docutils = 0.12
Jinja2 = 2.7.3
MarkupSafe = 0.23
mr.developer = 1.31
pyenchant = 1.6.6
Pygments = 2.0.1
setuptools = 7.0
six = 1.8.0
Sphinx = 1.2.1
sphinxcontrib-spelling = 2.1.1
z3c.recipe.egg = 2.0.1
zc.buildout = 2.2.5