Show More
@@ -50,13 +50,9 b' long_description = \\' | |||||
50 | IPython provides a rich toolkit to help you make the most out of using Python |
|
50 | IPython provides a rich toolkit to help you make the most out of using Python | |
51 | interactively. Its main components are: |
|
51 | interactively. Its main components are: | |
52 |
|
52 | |||
53 |
* |
|
53 | * A powerful interactive Python shell | |
54 | * A web-based interactive notebook environment with all shell features plus |
|
54 | * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter | |
55 | support for embedded figures, animations and rich media. |
|
55 | notebooks and other interactive frontends. | |
56 | * Support for interactive data visualization and use of GUI toolkits. |
|
|||
57 | * Flexible, embeddable interpreters to load into your own projects. |
|
|||
58 | * A high-performance library for high level and interactive parallel computing |
|
|||
59 | that works in multicore systems, clusters, supercomputing and cloud scenarios. |
|
|||
60 |
|
56 | |||
61 | The enhanced interactive Python shells have the following main features: |
|
57 | The enhanced interactive Python shells have the following main features: | |
62 |
|
58 | |||
@@ -86,27 +82,6 b' The enhanced interactive Python shells have the following main features:' | |||||
86 |
|
82 | |||
87 | * Integrated access to the pdb debugger and the Python profiler. |
|
83 | * Integrated access to the pdb debugger and the Python profiler. | |
88 |
|
84 | |||
89 | The parallel computing architecture has the following main features: |
|
|||
90 |
|
||||
91 | * Quickly parallelize Python code from an interactive Python/IPython session. |
|
|||
92 |
|
||||
93 | * A flexible and dynamic process model that be deployed on anything from |
|
|||
94 | multicore workstations to supercomputers. |
|
|||
95 |
|
||||
96 | * An architecture that supports many different styles of parallelism, from |
|
|||
97 | message passing to task farming. |
|
|||
98 |
|
||||
99 | * Both blocking and fully asynchronous interfaces. |
|
|||
100 |
|
||||
101 | * High level APIs that enable many things to be parallelized in a few lines |
|
|||
102 | of code. |
|
|||
103 |
|
||||
104 | * Share live parallel jobs with other users securely. |
|
|||
105 |
|
||||
106 | * Dynamically load balanced task farming system. |
|
|||
107 |
|
||||
108 | * Robust error handling in parallel code. |
|
|||
109 |
|
||||
110 | The latest development version is always available from IPython's `GitHub |
|
85 | The latest development version is always available from IPython's `GitHub | |
111 | site <http://github.com/ipython>`_. |
|
86 | site <http://github.com/ipython>`_. | |
112 | """ |
|
87 | """ | |
@@ -138,6 +113,7 b" keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed'," | |||||
138 | 'Web-based computing', 'Qt console', 'Embedding'] |
|
113 | 'Web-based computing', 'Qt console', 'Embedding'] | |
139 |
|
114 | |||
140 | classifiers = [ |
|
115 | classifiers = [ | |
|
116 | 'Framework :: IPython', | |||
141 | 'Intended Audience :: Developers', |
|
117 | 'Intended Audience :: Developers', | |
142 | 'Intended Audience :: Science/Research', |
|
118 | 'Intended Audience :: Science/Research', | |
143 | 'License :: OSI Approved :: BSD License', |
|
119 | 'License :: OSI Approved :: BSD License', | |
@@ -145,6 +121,5 b' classifiers = [' | |||||
145 | 'Programming Language :: Python :: 2', |
|
121 | 'Programming Language :: Python :: 2', | |
146 | 'Programming Language :: Python :: 2.7', |
|
122 | 'Programming Language :: Python :: 2.7', | |
147 | 'Programming Language :: Python :: 3', |
|
123 | 'Programming Language :: Python :: 3', | |
148 | 'Topic :: System :: Distributed Computing', |
|
|||
149 | 'Topic :: System :: Shells' |
|
124 | 'Topic :: System :: Shells' | |
150 | ] |
|
125 | ] |
General Comments 0
You need to be logged in to leave comments.
Login now