File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 8
8
# This is necessary for Python 2.6 on Travis for some reason.
9
9
import multiprocessing
10
10
11
- try :
12
- from setuptools import setup
13
- except ImportError :
14
- from distutils .core import setup
15
-
16
- if sys .argv [- 1 ] == 'publish' :
17
- os .system ('python setup.py sdist upload' )
18
- sys .exit ()
11
+ from setuptools import setup
19
12
20
13
_version_re = re .compile (r'__version__\s+=\s+(.*)' )
21
14
45
38
tests_require = ['requests_mock' ],
46
39
test_suite = "tests" ,
47
40
license = 'Apache License 2.0 ' ,
48
- classifiers = ( 'Development Status :: 5 - Production/Stable' ,
41
+ classifiers = [ 'Development Status :: 5 - Production/Stable' ,
49
42
'Environment :: Web Environment' ,
50
43
'Intended Audience :: Developers' ,
51
44
'License :: OSI Approved :: Apache Software License' ,
58
51
'Programming Language :: Python' ,
59
52
'Topic :: Internet :: Proxy Servers' ,
60
53
'Topic :: Internet :: WWW/HTTP' ,
61
- 'Topic :: Internet' , ) , )
54
+ 'Topic :: Internet' , ] , )
You can’t perform that action at this time.
0 commit comments