Skip to content

Commit

Permalink
Declare dependencies for doc building.
Browse files Browse the repository at this point in the history
  • Loading branch information
ulif committed Dec 22, 2010
1 parent 68c0357 commit f7f0e7f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ def read(*rnames):
'zope.testing',
]

docs_require = [
'Sphinx',
'collective.recipe.sphinxbuilder',
'docutils',
'roman',
]

setup(
name='grok',
version='1.4dev',
Expand Down Expand Up @@ -88,5 +95,6 @@ def read(*rnames):
'zope.traversing',
],
tests_require=tests_require,
extras_require={'test': tests_require},
extras_require={'test': tests_require,
'docs': docs_require},
)

0 comments on commit f7f0e7f

Please sign in to comment.