File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 99from distutils .errors import (CCompilerError , DistutilsExecError ,
1010 DistutilsPlatformError )
1111
12- try :
13- from setuptools import setup , Extension , Feature
14- except ImportError :
15- from distutils .core import setup , Extension
16- Feature = None
12+ from setuptools import setup , Extension , Feature
1713
1814cmdclass = {}
1915PYPY = hasattr (sys , 'pypy_version_info' )
@@ -138,7 +134,7 @@ def run_setup(with_cext):
138134 test_suite = 'nose.collector' ,
139135 license = LICENSE ,
140136 cmdclass = cmdclass ,
141- classifiers = (
137+ classifiers = [
142138 'Development Status :: 5 - Production/Stable' ,
143139 'Environment :: Web Environment' ,
144140 'Intended Audience :: Developers' ,
@@ -152,7 +148,7 @@ def run_setup(with_cext):
152148 'Programming Language :: Python' ,
153149 'Topic :: Internet :: Proxy Servers' ,
154150 'Topic :: Internet' ,
155- ) ,
151+ ] ,
156152 ** kwargs
157153 )
158154
You can’t perform that action at this time.
0 commit comments