##// END OF EJS Templates
Add formal support for alt text to IPython.display.Image....
Add formal support for alt text to IPython.display.Image. For accessibility reasons users should be encouraged to add useful alt text to images. Currently there is no recommended way to do this using the standard Image object. Adding this field is a step towards getting a common way for notebook renderers to support alt text and towards encouraging libraries creating images to add meaningful alt text.

File last commit:

r13387:3b4dba0a
r26382:24aa3931
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))