mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#417: Don't force dependency on the setuptools version mandated by ez_setup.py.
This commit is contained in:
parent
f5d52fa4f4
commit
2477249d42
9
setup.py
9
setup.py
@ -1,10 +1,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import ez_setup
|
||||
ez_setup.use_setuptools()
|
||||
try:
|
||||
from setuptools import setup, find_packages
|
||||
except ImportError:
|
||||
import ez_setup
|
||||
ez_setup.use_setuptools()
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
import os
|
||||
import sys
|
||||
from setuptools import setup, find_packages
|
||||
from distutils import log
|
||||
|
||||
import sphinx
|
||||
|
Loading…
Reference in New Issue
Block a user