##// END OF EJS Templates
update release/authors...
MinRK -
Show More
@@ -52,9 +52,7 b' from .utils.sysinfo import sys_info'
52 52 from .utils.frame import extract_module_locals
53 53
54 54 # Release data
55 __author__ = ''
56 for author, email in release.authors.itervalues():
57 __author__ += author + ' <' + email + '>\n'
55 __author__ = '%s <%s>' % (release.author, release.author_email)
58 56 __license__ = release.license
59 57 __version__ = release.version
60 58 version_info = release.version_info
@@ -130,7 +130,7 b" url = 'http://ipython.org'"
130 130
131 131 download_url = 'https://github.com/ipython/ipython/downloads'
132 132
133 platforms = ['Linux','Mac OSX','Windows XP/2000/NT/Vista/7']
133 platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8']
134 134
135 135 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed',
136 136 'Web-based computing', 'Qt console', 'Embedding']
@@ -144,8 +144,8 b' classifiers = ['
144 144 'Programming Language :: Python :: 2.6',
145 145 'Programming Language :: Python :: 2.7',
146 146 'Programming Language :: Python :: 3',
147 'Programming Language :: Python :: 3.1',
148 147 'Programming Language :: Python :: 3.2',
148 'Programming Language :: Python :: 3.3',
149 149 'Topic :: System :: Distributed Computing',
150 150 'Topic :: System :: Shells'
151 151 ]
@@ -92,7 +92,7 b' class IPAppCrashHandler(CrashHandler):'
92 92 """sys.excepthook for IPython itself, leaves a detailed report on disk."""
93 93
94 94 def __init__(self, app):
95 contact_name = release.authors['Fernando'][0]
95 contact_name = release.author
96 96 contact_email = release.author_email
97 97 bug_tracker = 'https://github.com/ipython/ipython/issues'
98 98 super(IPAppCrashHandler,self).__init__(
General Comments 0
You need to be logged in to leave comments. Login now