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