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