File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- #/usr/bin/env python
1+ #! /usr/bin/env python
22import codecs
33import os
44from setuptools import setup , find_packages
77
88# Workaround for multiprocessing/nose issue. See http://bugs.python.org/msg170215
99try :
10- import multiprocessing
10+ import multiprocessing # NOQA
1111except ImportError :
1212 pass
1313
1919
2020read = lambda filepath : codecs .open (filepath , 'r' , 'utf-8' ).read ()
2121
22+
2223def exec_file (filepath , globalz = None , localz = None ):
2324 exec (read (filepath ), globalz , localz )
2425
26+
2527# Load package meta from the pkgmeta module without loading imagekit.
2628pkgmeta = {}
2729exec_file (os .path .join (os .path .dirname (__file__ ),
28- 'imagekit' , 'pkgmeta.py' ), pkgmeta )
30+ 'imagekit' , 'pkgmeta.py' ), pkgmeta )
2931
3032
3133setup (
You can’t perform that action at this time.
0 commit comments