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