Show More
@@ -1,83 +1,84 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 |
$Id: Release.py 11 |
|
4 | $Id: Release.py 1114 2006-01-31 03:45:23Z fperez $""" | |
5 |
|
5 | |||
6 | #***************************************************************************** |
|
6 | #***************************************************************************** | |
7 | # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu> |
|
7 | # Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu> | |
8 | # |
|
8 | # | |
9 | # Copyright (c) 2001 Janko Hauser <jhauser@zscout.de> and Nathaniel Gray |
|
9 | # Copyright (c) 2001 Janko Hauser <jhauser@zscout.de> and Nathaniel Gray | |
10 | # <n8gray@caltech.edu> |
|
10 | # <n8gray@caltech.edu> | |
11 | # |
|
11 | # | |
12 | # Distributed under the terms of the BSD License. The full license is in |
|
12 | # Distributed under the terms of the BSD License. The full license is in | |
13 | # the file COPYING, distributed as part of this software. |
|
13 | # the file COPYING, distributed as part of this software. | |
14 | #***************************************************************************** |
|
14 | #***************************************************************************** | |
15 |
|
15 | |||
16 | # Name of the package for release purposes. This is the name which labels |
|
16 | # Name of the package for release purposes. This is the name which labels | |
17 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. |
|
17 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. | |
18 | name = 'ipython' |
|
18 | name = 'ipython' | |
19 |
|
19 | |||
20 | # For versions with substrings (like 0.6.16.svn), use an extra . to separate |
|
20 | # For versions with substrings (like 0.6.16.svn), use an extra . to separate | |
21 | # the new substring. We have to avoid using either dashes or underscores, |
|
21 | # the new substring. We have to avoid using either dashes or underscores, | |
22 | # because bdist_rpm does not accept dashes (an RPM) convention, and |
|
22 | # because bdist_rpm does not accept dashes (an RPM) convention, and | |
23 | # bdist_deb does not accept underscores (a Debian convention). |
|
23 | # bdist_deb does not accept underscores (a Debian convention). | |
24 |
|
24 | |||
25 |
|
25 | |||
26 | version = '0.7.2.svn' |
|
26 | version = '0.7.2.svn' | |
27 |
|
27 | |||
28 |
revision = '$Revision: 11 |
|
28 | revision = '$Revision: 1114 $' | |
29 |
|
29 | |||
30 | description = "An enhanced interactive Python shell." |
|
30 | description = "An enhanced interactive Python shell." | |
31 |
|
31 | |||
32 | long_description = \ |
|
32 | long_description = \ | |
33 | """ |
|
33 | """ | |
34 | IPython provides a replacement for the interactive Python interpreter with |
|
34 | IPython provides a replacement for the interactive Python interpreter with | |
35 | extra functionality. |
|
35 | extra functionality. | |
36 |
|
36 | |||
37 | Main features: |
|
37 | Main features: | |
38 |
|
38 | |||
39 | * Comprehensive object introspection. |
|
39 | * Comprehensive object introspection. | |
40 |
|
40 | |||
41 | * Input history, persistent across sessions. |
|
41 | * Input history, persistent across sessions. | |
42 |
|
42 | |||
43 | * Caching of output results during a session with automatically generated |
|
43 | * Caching of output results during a session with automatically generated | |
44 | references. |
|
44 | references. | |
45 |
|
45 | |||
46 | * Readline based name completion. |
|
46 | * Readline based name completion. | |
47 |
|
47 | |||
48 | * Extensible system of 'magic' commands for controlling the environment and |
|
48 | * Extensible system of 'magic' commands for controlling the environment and | |
49 | performing many tasks related either to IPython or the operating system. |
|
49 | performing many tasks related either to IPython or the operating system. | |
50 |
|
50 | |||
51 | * Configuration system with easy switching between different setups (simpler |
|
51 | * Configuration system with easy switching between different setups (simpler | |
52 | than changing $PYTHONSTARTUP environment variables every time). |
|
52 | than changing $PYTHONSTARTUP environment variables every time). | |
53 |
|
53 | |||
54 | * Session logging and reloading. |
|
54 | * Session logging and reloading. | |
55 |
|
55 | |||
56 | * Extensible syntax processing for special purpose situations. |
|
56 | * Extensible syntax processing for special purpose situations. | |
57 |
|
57 | |||
58 | * Access to the system shell with user-extensible alias system. |
|
58 | * Access to the system shell with user-extensible alias system. | |
59 |
|
59 | |||
60 | * Easily embeddable in other Python programs. |
|
60 | * Easily embeddable in other Python programs. | |
61 |
|
61 | |||
62 | * Integrated access to the pdb debugger and the Python profiler. |
|
62 | * Integrated access to the pdb debugger and the Python profiler. | |
63 |
|
63 | |||
64 | The latest development version is always available at |
|
64 | The latest development version is always available at the IPython subversion | |
65 | <a href="http://ipython.scipy.org/svn/ipython/ipython/trunk#egg=ipython-dev"> |
|
65 | repository_. | |
66 | the IPython subversion repository</a>. |
|
66 | ||
|
67 | .. _repository: http://ipython.scipy.org/svn/ipython/ipython/trunk#egg=ipython-dev | |||
67 | """ |
|
68 | """ | |
68 |
|
69 | |||
69 | license = 'BSD' |
|
70 | license = 'BSD' | |
70 |
|
71 | |||
71 | authors = {'Fernando' : ('Fernando Perez','fperez@colorado.edu'), |
|
72 | authors = {'Fernando' : ('Fernando Perez','fperez@colorado.edu'), | |
72 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
73 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
73 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
74 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
74 | 'Ville' : ('Ville Vainio','vivainio@gmail.com') |
|
75 | 'Ville' : ('Ville Vainio','vivainio@gmail.com') | |
75 | } |
|
76 | } | |
76 |
|
77 | |||
77 | url = 'http://ipython.scipy.org' |
|
78 | url = 'http://ipython.scipy.org' | |
78 |
|
79 | |||
79 | download_url = 'http://ipython.scipy.org/dist' |
|
80 | download_url = 'http://ipython.scipy.org/dist' | |
80 |
|
81 | |||
81 | platforms = ['Linux','Mac OSX','Windows XP/2000/NT','Windows 95/98/ME'] |
|
82 | platforms = ['Linux','Mac OSX','Windows XP/2000/NT','Windows 95/98/ME'] | |
82 |
|
83 | |||
83 | keywords = ['Interactive','Interpreter','Shell'] |
|
84 | keywords = ['Interactive','Interpreter','Shell'] |
General Comments 0
You need to be logged in to leave comments.
Login now