docs_extra for subpkgs

This commit is contained in:
Jakub Warmuz
2015-10-21 17:06:36 -07:00
committed by Peter Eckersley
parent 5fe5d69192
commit 946ee63238
5 changed files with 40 additions and 0 deletions
+8
View File
@@ -20,6 +20,11 @@ if sys.version_info < (2, 7):
else:
install_requires.append('mock')
docs_extras = [
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
'sphinx_rtd_theme',
]
setup(
name='letsencrypt-apache',
version=version,
@@ -48,6 +53,9 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require={
'docs': docs_extras,
},
entry_points={
'letsencrypt.plugins': [
'apache = letsencrypt_apache.configurator:ApacheConfigurator',