##// END OF EJS Templates
Update info for pypi.
Fernando Perez -
Show More
@@ -2,7 +2,7 b''
2 """Release data for the IPython project."""
2 """Release data for the IPython project."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (c) 2008-2011, IPython Development Team.
5 # Copyright (c) 2008-2012, IPython Development Team.
6 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
6 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
7 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
7 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
8 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
8 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
@@ -45,9 +45,12 b' IPython provides a rich toolkit to help you make the most out of using Python'
45 interactively. Its main components are:
45 interactively. Its main components are:
46
46
47 * Powerful interactive Python shells (terminal- and Qt-based).
47 * Powerful interactive Python shells (terminal- and Qt-based).
48 * A web-based interactive notebook environment with all shell features plus
49 support for embedded figures, animations and rich media.
48 * Support for interactive data visualization and use of GUI toolkits.
50 * Support for interactive data visualization and use of GUI toolkits.
49 * Flexible, embeddable interpreters to load into your own projects.
51 * Flexible, embeddable interpreters to load into your own projects.
50 * Tools for high level and interactive parallel computing.
52 * A high-performance library for high level and interactive parallel computing
53 that works in multicore systems, clusters, supercomputing and cloud scenarios.
51
54
52 The enhanced interactive Python shells have the following main features:
55 The enhanced interactive Python shells have the following main features:
53
56
@@ -58,13 +61,14 b' The enhanced interactive Python shells have the following main features:'
58 * Caching of output results during a session with automatically generated
61 * Caching of output results during a session with automatically generated
59 references.
62 references.
60
63
61 * Readline based name completion.
64 * Extensible tab completion, with support by default for completion of python
65 variables and keywords, filenames and function keywords.
62
66
63 * Extensible system of 'magic' commands for controlling the environment and
67 * Extensible system of 'magic' commands for controlling the environment and
64 performing many tasks related either to IPython or the operating system.
68 performing many tasks related either to IPython or the operating system.
65
69
66 * Configuration system with easy switching between different setups (simpler
70 * A rich configuration system with easy switching between different setups
67 than changing $PYTHONSTARTUP environment variables every time).
71 (simpler than changing $PYTHONSTARTUP environment variables every time).
68
72
69 * Session logging and reloading.
73 * Session logging and reloading.
70
74
@@ -72,7 +76,7 b' The enhanced interactive Python shells have the following main features:'
72
76
73 * Access to the system shell with user-extensible alias system.
77 * Access to the system shell with user-extensible alias system.
74
78
75 * Easily embeddable in other Python programs and wxPython GUIs.
79 * Easily embeddable in other Python programs and GUIs.
76
80
77 * Integrated access to the pdb debugger and the Python profiler.
81 * Integrated access to the pdb debugger and the Python profiler.
78
82
@@ -108,7 +112,8 b" authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),"
108 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
112 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
109 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
113 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
110 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
114 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
111 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com')
115 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
116 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
112 }
117 }
113
118
114 author = 'The IPython Development Team'
119 author = 'The IPython Development Team'
@@ -121,9 +126,10 b" url = 'http://ipython.org'"
121 # those are the ones we want pip/easy_install to be able to find.
126 # those are the ones we want pip/easy_install to be able to find.
122 download_url = 'http://archive.ipython.org/release/%s' % version
127 download_url = 'http://archive.ipython.org/release/%s' % version
123
128
124 platforms = ['Linux','Mac OSX','Windows XP/2000/NT']
129 platforms = ['Linux','Mac OSX','Windows XP/2000/NT/Vista/7']
125
130
126 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed']
131 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed',
132 'Web-based computing', 'Qt console', 'Embedding']
127
133
128 classifiers = [
134 classifiers = [
129 'Intended Audience :: Developers',
135 'Intended Audience :: Developers',
@@ -74,7 +74,7 b' Installation using easy_install'
74 -------------------------------
74 -------------------------------
75
75
76 If you have :mod:`distribute` installed, the easiest way of getting IPython is
76 If you have :mod:`distribute` installed, the easiest way of getting IPython is
77 to simple use :command:`easy_install`:
77 to simply use :command:`easy_install`:
78
78
79 .. code-block:: bash
79 .. code-block:: bash
80
80
General Comments 0
You need to be logged in to leave comments. Login now