Skip to content

Commit d624001

Browse files
committed
setup.py: add docs extra
1 parent e162a4e commit d624001

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"""setuptools setup module for oauth-dropins.
22
3-
Docs:
4-
https://packaging.python.org/en/latest/distributing.html
5-
http://pythonhosted.org/setuptools/setuptools.html
3+
Docs: https://setuptools.pypa.io/en/latest/userguide/
64
75
Based on https://github.com/pypa/sampleproject/blob/master/setup.py
86
"""
@@ -59,4 +57,10 @@
5957
'webapp2>=3.0.0b1',
6058
],
6159
tests_require=['mox3>=0.28,<2.0'],
60+
extras_require={
61+
'docs': [
62+
'sphinx',
63+
'sphinx-rtd-theme',
64+
],
65+
},
6266
)

0 commit comments

Comments
 (0)