Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-10-18 16:49:26 +0300
committerPeter Eckersley <pde@eff.org>2015-10-22 03:06:36 +0300
commit946ee632386d5973145d6371409173442947fbd0 (patch)
tree9108b57d57ba45a6ea4e6ab3197612f8b726844e /letsencrypt-nginx/setup.py
parent5fe5d69192c3ec21201fcdf63f87c6bdfdb418fa (diff)
docs_extra for subpkgs
Diffstat (limited to 'letsencrypt-nginx/setup.py')
-rw-r--r--letsencrypt-nginx/setup.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py
index a37b8222b..5d80807d1 100644
--- a/letsencrypt-nginx/setup.py
+++ b/letsencrypt-nginx/setup.py
@@ -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-nginx',
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': [
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',