Show More
@@ -1,149 +1,149 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Release data for the IPython project.""" |
|
2 | """Release data for the IPython project.""" | |
3 |
|
3 | |||
4 | #----------------------------------------------------------------------------- |
|
4 | #----------------------------------------------------------------------------- | |
5 | # Copyright (c) 2008, IPython Development Team. |
|
5 | # Copyright (c) 2008, IPython Development Team. | |
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> |
|
6 | # Copyright (c) 2001, 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> | |
9 | # |
|
9 | # | |
10 | # Distributed under the terms of the Modified BSD License. |
|
10 | # Distributed under the terms of the Modified BSD License. | |
11 | # |
|
11 | # | |
12 | # The full license is in the file COPYING.txt, distributed with this software. |
|
12 | # The full license is in the file COPYING.txt, distributed with this software. | |
13 | #----------------------------------------------------------------------------- |
|
13 | #----------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | # Name of the package for release purposes. This is the name which labels |
|
15 | # Name of the package for release purposes. This is the name which labels | |
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. |
|
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. | |
17 | name = 'ipython' |
|
17 | name = 'ipython' | |
18 |
|
18 | |||
19 | # IPython version information. An empty _version_extra corresponds to a full |
|
19 | # IPython version information. An empty _version_extra corresponds to a full | |
20 | # release. 'dev' as a _version_extra string means this is a development |
|
20 | # release. 'dev' as a _version_extra string means this is a development | |
21 | # version |
|
21 | # version | |
22 | _version_major = 1 |
|
22 | _version_major = 1 | |
23 | _version_minor = 0 |
|
23 | _version_minor = 0 | |
24 | _version_micro = 0 # use 0 for first of series, number for 1 and above |
|
24 | _version_patch = 0 | |
25 | _version_extra = 'dev' |
|
25 | _version_extra = 'dev' | |
26 | #_version_extra = 'rc1' |
|
26 | #_version_extra = 'rc1' | |
27 | # _version_extra = '' # Uncomment this for full releases |
|
27 | # _version_extra = '' # Uncomment this for full releases | |
28 |
|
28 | |||
29 | # Construct full version string from these. |
|
29 | # Construct full version string from these. | |
30 | _ver = [_version_major, _version_minor] |
|
30 | _ver = [_version_major, _version_minor, _version_patch] | |
31 | if _version_extra != 'dev': |
|
|||
32 | _ver.append(_version_micro) |
|
|||
33 |
|
31 | |||
34 |
__version__ = '.'.join(map(str, _ver)) |
|
32 | __version__ = '.'.join(map(str, _ver)) | |
|
33 | if _version_extra: | |||
|
34 | __version__ = __version__ + '-' + _version_extra | |||
35 |
|
35 | |||
36 | version = __version__ # backwards compatibility name |
|
36 | version = __version__ # backwards compatibility name | |
37 |
version_info = (_version_major, _version_minor, _version_ |
|
37 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) | |
38 |
|
38 | |||
39 | # Change this when incrementing the kernel protocol version |
|
39 | # Change this when incrementing the kernel protocol version | |
40 | kernel_protocol_version_info = (4, 0) |
|
40 | kernel_protocol_version_info = (4, 0) | |
41 |
|
41 | |||
42 | description = "IPython: Productive Interactive Computing" |
|
42 | description = "IPython: Productive Interactive Computing" | |
43 |
|
43 | |||
44 | long_description = \ |
|
44 | long_description = \ | |
45 | """ |
|
45 | """ | |
46 | IPython provides a rich toolkit to help you make the most out of using Python |
|
46 | IPython provides a rich toolkit to help you make the most out of using Python | |
47 | interactively. Its main components are: |
|
47 | interactively. Its main components are: | |
48 |
|
48 | |||
49 | * Powerful interactive Python shells (terminal- and Qt-based). |
|
49 | * Powerful interactive Python shells (terminal- and Qt-based). | |
50 | * A web-based interactive notebook environment with all shell features plus |
|
50 | * A web-based interactive notebook environment with all shell features plus | |
51 | support for embedded figures, animations and rich media. |
|
51 | support for embedded figures, animations and rich media. | |
52 | * Support for interactive data visualization and use of GUI toolkits. |
|
52 | * Support for interactive data visualization and use of GUI toolkits. | |
53 | * Flexible, embeddable interpreters to load into your own projects. |
|
53 | * Flexible, embeddable interpreters to load into your own projects. | |
54 | * A high-performance library for high level and interactive parallel computing |
|
54 | * A high-performance library for high level and interactive parallel computing | |
55 | that works in multicore systems, clusters, supercomputing and cloud scenarios. |
|
55 | that works in multicore systems, clusters, supercomputing and cloud scenarios. | |
56 |
|
56 | |||
57 | The enhanced interactive Python shells have the following main features: |
|
57 | The enhanced interactive Python shells have the following main features: | |
58 |
|
58 | |||
59 | * Comprehensive object introspection. |
|
59 | * Comprehensive object introspection. | |
60 |
|
60 | |||
61 | * Input history, persistent across sessions. |
|
61 | * Input history, persistent across sessions. | |
62 |
|
62 | |||
63 | * Caching of output results during a session with automatically generated |
|
63 | * Caching of output results during a session with automatically generated | |
64 | references. |
|
64 | references. | |
65 |
|
65 | |||
66 | * Extensible tab completion, with support by default for completion of python |
|
66 | * Extensible tab completion, with support by default for completion of python | |
67 | variables and keywords, filenames and function keywords. |
|
67 | variables and keywords, filenames and function keywords. | |
68 |
|
68 | |||
69 | * Extensible system of 'magic' commands for controlling the environment and |
|
69 | * Extensible system of 'magic' commands for controlling the environment and | |
70 | performing many tasks related either to IPython or the operating system. |
|
70 | performing many tasks related either to IPython or the operating system. | |
71 |
|
71 | |||
72 | * A rich configuration system with easy switching between different setups |
|
72 | * A rich configuration system with easy switching between different setups | |
73 | (simpler than changing $PYTHONSTARTUP environment variables every time). |
|
73 | (simpler than changing $PYTHONSTARTUP environment variables every time). | |
74 |
|
74 | |||
75 | * Session logging and reloading. |
|
75 | * Session logging and reloading. | |
76 |
|
76 | |||
77 | * Extensible syntax processing for special purpose situations. |
|
77 | * Extensible syntax processing for special purpose situations. | |
78 |
|
78 | |||
79 | * Access to the system shell with user-extensible alias system. |
|
79 | * Access to the system shell with user-extensible alias system. | |
80 |
|
80 | |||
81 | * Easily embeddable in other Python programs and GUIs. |
|
81 | * Easily embeddable in other Python programs and GUIs. | |
82 |
|
82 | |||
83 | * Integrated access to the pdb debugger and the Python profiler. |
|
83 | * Integrated access to the pdb debugger and the Python profiler. | |
84 |
|
84 | |||
85 | The parallel computing architecture has the following main features: |
|
85 | The parallel computing architecture has the following main features: | |
86 |
|
86 | |||
87 | * Quickly parallelize Python code from an interactive Python/IPython session. |
|
87 | * Quickly parallelize Python code from an interactive Python/IPython session. | |
88 |
|
88 | |||
89 | * A flexible and dynamic process model that be deployed on anything from |
|
89 | * A flexible and dynamic process model that be deployed on anything from | |
90 | multicore workstations to supercomputers. |
|
90 | multicore workstations to supercomputers. | |
91 |
|
91 | |||
92 | * An architecture that supports many different styles of parallelism, from |
|
92 | * An architecture that supports many different styles of parallelism, from | |
93 | message passing to task farming. |
|
93 | message passing to task farming. | |
94 |
|
94 | |||
95 | * Both blocking and fully asynchronous interfaces. |
|
95 | * Both blocking and fully asynchronous interfaces. | |
96 |
|
96 | |||
97 | * High level APIs that enable many things to be parallelized in a few lines |
|
97 | * High level APIs that enable many things to be parallelized in a few lines | |
98 | of code. |
|
98 | of code. | |
99 |
|
99 | |||
100 | * Share live parallel jobs with other users securely. |
|
100 | * Share live parallel jobs with other users securely. | |
101 |
|
101 | |||
102 | * Dynamically load balanced task farming system. |
|
102 | * Dynamically load balanced task farming system. | |
103 |
|
103 | |||
104 | * Robust error handling in parallel code. |
|
104 | * Robust error handling in parallel code. | |
105 |
|
105 | |||
106 | The latest development version is always available from IPython's `GitHub |
|
106 | The latest development version is always available from IPython's `GitHub | |
107 | site <http://github.com/ipython>`_. |
|
107 | site <http://github.com/ipython>`_. | |
108 | """ |
|
108 | """ | |
109 |
|
109 | |||
110 | license = 'BSD' |
|
110 | license = 'BSD' | |
111 |
|
111 | |||
112 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), |
|
112 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), | |
113 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
113 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
114 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
114 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
115 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), |
|
115 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), | |
116 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), |
|
116 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), | |
117 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), |
|
117 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), | |
118 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), |
|
118 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), | |
119 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), |
|
119 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), | |
120 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), |
|
120 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), | |
121 | } |
|
121 | } | |
122 |
|
122 | |||
123 | author = 'The IPython Development Team' |
|
123 | author = 'The IPython Development Team' | |
124 |
|
124 | |||
125 | author_email = 'ipython-dev@scipy.org' |
|
125 | author_email = 'ipython-dev@scipy.org' | |
126 |
|
126 | |||
127 | url = 'http://ipython.org' |
|
127 | url = 'http://ipython.org' | |
128 |
|
128 | |||
129 | download_url = 'https://github.com/ipython/ipython/downloads' |
|
129 | download_url = 'https://github.com/ipython/ipython/downloads' | |
130 |
|
130 | |||
131 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] |
|
131 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] | |
132 |
|
132 | |||
133 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', |
|
133 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', | |
134 | 'Web-based computing', 'Qt console', 'Embedding'] |
|
134 | 'Web-based computing', 'Qt console', 'Embedding'] | |
135 |
|
135 | |||
136 | classifiers = [ |
|
136 | classifiers = [ | |
137 | 'Intended Audience :: Developers', |
|
137 | 'Intended Audience :: Developers', | |
138 | 'Intended Audience :: Science/Research', |
|
138 | 'Intended Audience :: Science/Research', | |
139 | 'License :: OSI Approved :: BSD License', |
|
139 | 'License :: OSI Approved :: BSD License', | |
140 | 'Programming Language :: Python', |
|
140 | 'Programming Language :: Python', | |
141 | 'Programming Language :: Python :: 2', |
|
141 | 'Programming Language :: Python :: 2', | |
142 | 'Programming Language :: Python :: 2.6', |
|
142 | 'Programming Language :: Python :: 2.6', | |
143 | 'Programming Language :: Python :: 2.7', |
|
143 | 'Programming Language :: Python :: 2.7', | |
144 | 'Programming Language :: Python :: 3', |
|
144 | 'Programming Language :: Python :: 3', | |
145 | 'Programming Language :: Python :: 3.2', |
|
145 | 'Programming Language :: Python :: 3.2', | |
146 | 'Programming Language :: Python :: 3.3', |
|
146 | 'Programming Language :: Python :: 3.3', | |
147 | 'Topic :: System :: Distributed Computing', |
|
147 | 'Topic :: System :: Distributed Computing', | |
148 | 'Topic :: System :: Shells' |
|
148 | 'Topic :: System :: Shells' | |
149 | ] |
|
149 | ] |
General Comments 0
You need to be logged in to leave comments.
Login now