##// END OF EJS Templates
Fix link to our dev site which is now on GitHub and not on Launchpad
Fernando Perez -
Show More
@@ -1,120 +1,120 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) 2008-2010 The IPython Development Team
5 # Copyright (C) 2008-2010 The IPython Development Team
6 # Copyright (C) 2001-2008 Fernando Perez <fperez@colorado.edu>
6 # Copyright (C) 2001-2008 Fernando Perez <fperez@colorado.edu>
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 = True # change this to False to do a release
23 development = True # change this to False to do a release
24 version_base = '0.10.2'
24 version_base = '0.10.2'
25 branch = 'ipython'
25 branch = 'ipython'
26
26
27 if development:
27 if development:
28 if branch == 'ipython':
28 if branch == 'ipython':
29 version = '%s.git' % (version_base)
29 version = '%s.git' % (version_base)
30 else:
30 else:
31 version = '%s.git.%s' % (version_base, branch)
31 version = '%s.git.%s' % (version_base, branch)
32 else:
32 else:
33 version = version_base
33 version = version_base
34
34
35
35
36 description = "An interactive computing environment for Python"
36 description = "An interactive computing environment for Python"
37
37
38 long_description = \
38 long_description = \
39 """
39 """
40 The goal of IPython is to create a comprehensive environment for
40 The goal of IPython is to create a comprehensive environment for
41 interactive and exploratory computing. To support this goal, IPython
41 interactive and exploratory computing. To support this goal, IPython
42 has two main components:
42 has two main components:
43
43
44 * An enhanced interactive Python shell.
44 * An enhanced interactive Python shell.
45
45
46 * An architecture for interactive parallel computing.
46 * An architecture for interactive parallel computing.
47
47
48 The enhanced interactive Python shell has the following main features:
48 The enhanced interactive Python shell has the following main features:
49
49
50 * Comprehensive object introspection.
50 * Comprehensive object introspection.
51
51
52 * Input history, persistent across sessions.
52 * Input history, persistent across sessions.
53
53
54 * Caching of output results during a session with automatically generated
54 * Caching of output results during a session with automatically generated
55 references.
55 references.
56
56
57 * Readline based name completion.
57 * Readline based name completion.
58
58
59 * Extensible system of 'magic' commands for controlling the environment and
59 * Extensible system of 'magic' commands for controlling the environment and
60 performing many tasks related either to IPython or the operating system.
60 performing many tasks related either to IPython or the operating system.
61
61
62 * Configuration system with easy switching between different setups (simpler
62 * Configuration system with easy switching between different setups (simpler
63 than changing $PYTHONSTARTUP environment variables every time).
63 than changing $PYTHONSTARTUP environment variables every time).
64
64
65 * Session logging and reloading.
65 * Session logging and reloading.
66
66
67 * Extensible syntax processing for special purpose situations.
67 * Extensible syntax processing for special purpose situations.
68
68
69 * Access to the system shell with user-extensible alias system.
69 * Access to the system shell with user-extensible alias system.
70
70
71 * Easily embeddable in other Python programs and wxPython GUIs.
71 * Easily embeddable in other Python programs and wxPython GUIs.
72
72
73 * Integrated access to the pdb debugger and the Python profiler.
73 * Integrated access to the pdb debugger and the Python profiler.
74
74
75 The parallel computing architecture has the following main features:
75 The parallel computing architecture has the following main features:
76
76
77 * Quickly parallelize Python code from an interactive Python/IPython session.
77 * Quickly parallelize Python code from an interactive Python/IPython session.
78
78
79 * A flexible and dynamic process model that be deployed on anything from
79 * A flexible and dynamic process model that be deployed on anything from
80 multicore workstations to supercomputers.
80 multicore workstations to supercomputers.
81
81
82 * An architecture that supports many different styles of parallelism, from
82 * An architecture that supports many different styles of parallelism, from
83 message passing to task farming.
83 message passing to task farming.
84
84
85 * Both blocking and fully asynchronous interfaces.
85 * Both blocking and fully asynchronous interfaces.
86
86
87 * High level APIs that enable many things to be parallelized in a few lines
87 * High level APIs that enable many things to be parallelized in a few lines
88 of code.
88 of code.
89
89
90 * Share live parallel jobs with other users securely.
90 * Share live parallel jobs with other users securely.
91
91
92 * Dynamically load balanced task farming system.
92 * Dynamically load balanced task farming system.
93
93
94 * Robust error handling in parallel code.
94 * Robust error handling in parallel code.
95
95
96 The latest development version is always available from IPython's `Launchpad
96 The latest development version is always available from IPython's `GitHub
97 site <http://launchpad.net/ipython>`_.
97 site <http://github.com/ipython/ipython>`_.
98 """
98 """
99
99
100 license = 'BSD'
100 license = 'BSD'
101
101
102 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
102 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
103 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
103 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
104 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
104 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
105 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
105 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
106 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
106 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
107 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com')
107 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com')
108 }
108 }
109
109
110 author = 'The IPython Development Team'
110 author = 'The IPython Development Team'
111
111
112 author_email = 'ipython-dev@scipy.org'
112 author_email = 'ipython-dev@scipy.org'
113
113
114 url = 'http://ipython.scipy.org'
114 url = 'http://ipython.scipy.org'
115
115
116 download_url = 'http://ipython.scipy.org/dist'
116 download_url = 'http://ipython.scipy.org/dist'
117
117
118 platforms = ['Linux','Mac OSX','Windows XP/2000/NT','Windows 95/98/ME']
118 platforms = ['Linux','Mac OSX','Windows XP/2000/NT','Windows 95/98/ME']
119
119
120 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed']
120 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed']
General Comments 0
You need to be logged in to leave comments. Login now