mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
setup.py docs, Sphinx dep
This commit is contained in:
parent
27f0ba2633
commit
78c3f161d7
2 changed files with 6 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ zip_ok = false
|
|||
|
||||
[aliases]
|
||||
dev = develop easy_install letsencrypt[testing]
|
||||
docs = develop easy_install letsencrypt[docs]
|
||||
|
||||
[nosetests]
|
||||
nocapture=1
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -12,6 +12,10 @@ install_requires = [
|
|||
'requests',
|
||||
]
|
||||
|
||||
docs_extras = [
|
||||
'Sphinx',
|
||||
]
|
||||
|
||||
testing_extras = [
|
||||
'coverage',
|
||||
'nose',
|
||||
|
|
@ -36,6 +40,7 @@ setup(
|
|||
tests_require=install_requires,
|
||||
test_suite='letsencrypt',
|
||||
extras_require={
|
||||
'docs': docs_extras,
|
||||
'testing': testing_extras,
|
||||
},
|
||||
entry_points={
|
||||
|
|
|
|||
Loading…
Reference in a new issue