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