mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 10:16:17 +03:00
Clean up setup summary
This commit is contained in:
parent
163847b161
commit
3eeae008a7
9
setup.py
9
setup.py
|
@ -352,14 +352,15 @@ class pil_build_ext(build_ext):
|
||||||
self.summary_report(feature, unsafe_zlib)
|
self.summary_report(feature, unsafe_zlib)
|
||||||
|
|
||||||
def summary_report(self, feature, unsafe_zlib):
|
def summary_report(self, feature, unsafe_zlib):
|
||||||
|
|
||||||
print "-" * 68
|
print "-" * 68
|
||||||
print ("Pillow", VERSION, "( PIL fork based on", "PIL",
|
print "SETUP SUMMARY (Pillow", VERSION, "/ PIL %s)" % PIL_VERSION
|
||||||
PIL_VERSION, ")", "SETUP SUMMARY")
|
|
||||||
print "-" * 68
|
print "-" * 68
|
||||||
|
print "version ", VERSION
|
||||||
v = string.split(sys.version, "[")
|
v = string.split(sys.version, "[")
|
||||||
print "platform ", sys.platform, string.strip(v[0])
|
print "platform ", sys.platform, string.strip(v[0])
|
||||||
for v in v[1:]:
|
for v in v[1:]:
|
||||||
print " ", string.strip("[" + v)
|
print " ", string.strip("[" + v)
|
||||||
print "-" * 68
|
print "-" * 68
|
||||||
|
|
||||||
options = [
|
options = [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user