##// END OF EJS Templates
change version string for 0.8.3.rc1
Ville M. Vainio -
Show More
@@ -1,87 +1,89 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Release data for the IPython project.
3 3
4 4 $Id: Release.py 3002 2008-02-01 07:17:00Z 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 = '109'
25 revision = '113'
26 26 branch = 'ipython'
27 27
28 28 if branch == 'ipython':
29 29 version = '0.8.3.bzr.r' + revision
30 30 else:
31 31 version = '0.8.3.bzr.r%s.%s' % (revision,branch)
32 32
33 version = '0.8.3.rc1'
34
33 35 description = "An enhanced interactive Python shell."
34 36
35 37 long_description = \
36 38 """
37 39 IPython provides a replacement for the interactive Python interpreter with
38 40 extra functionality.
39 41
40 42 Main features:
41 43
42 44 * Comprehensive object introspection.
43 45
44 46 * Input history, persistent across sessions.
45 47
46 48 * Caching of output results during a session with automatically generated
47 49 references.
48 50
49 51 * Readline based name completion.
50 52
51 53 * Extensible system of 'magic' commands for controlling the environment and
52 54 performing many tasks related either to IPython or the operating system.
53 55
54 56 * Configuration system with easy switching between different setups (simpler
55 57 than changing $PYTHONSTARTUP environment variables every time).
56 58
57 59 * Session logging and reloading.
58 60
59 61 * Extensible syntax processing for special purpose situations.
60 62
61 63 * Access to the system shell with user-extensible alias system.
62 64
63 65 * Easily embeddable in other Python programs.
64 66
65 67 * Integrated access to the pdb debugger and the Python profiler.
66 68
67 69 The latest development version is always available at the IPython subversion
68 70 repository_.
69 71
70 72 .. _repository: http://ipython.scipy.org/svn/ipython/ipython/trunk#egg=ipython-dev
71 73 """
72 74
73 75 license = 'BSD'
74 76
75 77 authors = {'Fernando' : ('Fernando Perez','fperez@colorado.edu'),
76 78 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
77 79 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
78 80 'Ville' : ('Ville Vainio','vivainio@gmail.com')
79 81 }
80 82
81 83 url = 'http://ipython.scipy.org'
82 84
83 85 download_url = 'http://ipython.scipy.org/dist'
84 86
85 87 platforms = ['Linux','Mac OSX','Windows XP/2000/NT','Windows 95/98/ME']
86 88
87 89 keywords = ['Interactive','Interpreter','Shell']
General Comments 0
You need to be logged in to leave comments. Login now