mirror of
https://github.com/logos-storage/deluge.git
synced 2026-01-07 23:53:12 +00:00
Don't depend on sphinx to build
This commit is contained in:
parent
5278c82580
commit
aef0a4616f
5
setup.py
5
setup.py
@ -30,7 +30,12 @@ from distutils import cmd, sysconfig
|
||||
from distutils.command.build import build as _build
|
||||
from distutils.command.clean import clean as _clean
|
||||
from setuptools.command.install import install as _install
|
||||
try:
|
||||
from sphinx.setup_command import BuildDoc
|
||||
except ImportError:
|
||||
class BuildDoc(object):
|
||||
pass
|
||||
|
||||
|
||||
import msgfmt
|
||||
import os
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user