Move conditional RTD dependencies to 'docs' extra
This commit is contained in:
parent
be7ea2678b
commit
dace5aeaee
@ -16,8 +16,6 @@ import sys
|
||||
import os
|
||||
import re
|
||||
|
||||
on_rtd = os.getenv('READTHEDOCS') == 'True'
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
@ -36,15 +34,11 @@ extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.extlinks',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx.ext.napoleon',
|
||||
'sphinxcontrib.asyncio',
|
||||
'details'
|
||||
]
|
||||
|
||||
if on_rtd:
|
||||
extensions.append('sphinxcontrib.napoleon')
|
||||
else:
|
||||
extensions.append('sphinx.ext.napoleon')
|
||||
|
||||
autodoc_member_order = 'bysource'
|
||||
|
||||
extlinks = {
|
||||
|
16
setup.py
16
setup.py
@ -1,18 +1,10 @@
|
||||
from setuptools import setup, find_packages
|
||||
import re, os
|
||||
|
||||
on_rtd = os.getenv('READTHEDOCS') == 'True'
|
||||
import re
|
||||
|
||||
requirements = []
|
||||
with open('requirements.txt') as f:
|
||||
requirements = f.read().splitlines()
|
||||
|
||||
if on_rtd:
|
||||
requirements.append('sphinx==1.7.4')
|
||||
requirements.append('sphinxcontrib-napoleon')
|
||||
requirements.append('sphinxcontrib-asyncio')
|
||||
requirements.append('sphinxcontrib-websupport')
|
||||
|
||||
version = ''
|
||||
with open('discord/__init__.py') as f:
|
||||
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
|
||||
@ -43,7 +35,11 @@ with open('README.rst') as f:
|
||||
|
||||
extras_require = {
|
||||
'voice': ['PyNaCl==1.1.2'],
|
||||
'docs': ['sphinxcontrib-asyncio']
|
||||
'docs': [
|
||||
'sphinx==1.7.4',
|
||||
'sphinxcontrib-asyncio',
|
||||
'sphinxcontrib-websupport',
|
||||
]
|
||||
}
|
||||
|
||||
setup(name='discord.py',
|
||||
|
Loading…
x
Reference in New Issue
Block a user