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