##// END OF EJS Templates
mark 1.0.0a1
MinRK -
Show More
@@ -1,151 +1,149 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Release data for the IPython project."""
3 3
4 4 #-----------------------------------------------------------------------------
5 5 # Copyright (c) 2008, IPython Development Team.
6 6 # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu>
7 7 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
8 8 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
9 9 #
10 10 # Distributed under the terms of the Modified BSD License.
11 11 #
12 12 # The full license is in the file COPYING.txt, distributed with this software.
13 13 #-----------------------------------------------------------------------------
14 14
15 15 # Name of the package for release purposes. This is the name which labels
16 16 # the tarballs and RPMs made by distutils, so it's best to lowercase it.
17 17 name = 'ipython'
18 18
19 19 # IPython version information. An empty _version_extra corresponds to a full
20 20 # release. 'dev' as a _version_extra string means this is a development
21 21 # version
22 22 _version_major = 1
23 23 _version_minor = 0
24 24 _version_micro = 0 # use 0 for first of series, number for 1 and above
25 _version_extra = 'dev'
26 #_version_extra = 'rc1'
25 # _version_extra = 'dev'
26 _version_extra = 'a1'
27 27 # _version_extra = '' # Uncomment this for full releases
28 28
29 29 # Construct full version string from these.
30 30 _ver = [_version_major, _version_minor]
31 if _version_micro:
31 if _version_extra != 'dev':
32 32 _ver.append(_version_micro)
33 if _version_extra:
34 _ver.append(_version_extra)
35 33
36 __version__ = '.'.join(map(str, _ver))
34 __version__ = '.'.join(map(str, _ver)) + _version_extra
37 35
38 36 version = __version__ # backwards compatibility name
39 37 version_info = (_version_major, _version_minor, _version_micro, _version_extra)
40 38
41 39 # Change this when incrementing the kernel protocol version
42 40 kernel_protocol_version_info = (4, 0)
43 41
44 42 description = "IPython: Productive Interactive Computing"
45 43
46 44 long_description = \
47 45 """
48 46 IPython provides a rich toolkit to help you make the most out of using Python
49 47 interactively. Its main components are:
50 48
51 49 * Powerful interactive Python shells (terminal- and Qt-based).
52 50 * A web-based interactive notebook environment with all shell features plus
53 51 support for embedded figures, animations and rich media.
54 52 * Support for interactive data visualization and use of GUI toolkits.
55 53 * Flexible, embeddable interpreters to load into your own projects.
56 54 * A high-performance library for high level and interactive parallel computing
57 55 that works in multicore systems, clusters, supercomputing and cloud scenarios.
58 56
59 57 The enhanced interactive Python shells have the following main features:
60 58
61 59 * Comprehensive object introspection.
62 60
63 61 * Input history, persistent across sessions.
64 62
65 63 * Caching of output results during a session with automatically generated
66 64 references.
67 65
68 66 * Extensible tab completion, with support by default for completion of python
69 67 variables and keywords, filenames and function keywords.
70 68
71 69 * Extensible system of 'magic' commands for controlling the environment and
72 70 performing many tasks related either to IPython or the operating system.
73 71
74 72 * A rich configuration system with easy switching between different setups
75 73 (simpler than changing $PYTHONSTARTUP environment variables every time).
76 74
77 75 * Session logging and reloading.
78 76
79 77 * Extensible syntax processing for special purpose situations.
80 78
81 79 * Access to the system shell with user-extensible alias system.
82 80
83 81 * Easily embeddable in other Python programs and GUIs.
84 82
85 83 * Integrated access to the pdb debugger and the Python profiler.
86 84
87 85 The parallel computing architecture has the following main features:
88 86
89 87 * Quickly parallelize Python code from an interactive Python/IPython session.
90 88
91 89 * A flexible and dynamic process model that be deployed on anything from
92 90 multicore workstations to supercomputers.
93 91
94 92 * An architecture that supports many different styles of parallelism, from
95 93 message passing to task farming.
96 94
97 95 * Both blocking and fully asynchronous interfaces.
98 96
99 97 * High level APIs that enable many things to be parallelized in a few lines
100 98 of code.
101 99
102 100 * Share live parallel jobs with other users securely.
103 101
104 102 * Dynamically load balanced task farming system.
105 103
106 104 * Robust error handling in parallel code.
107 105
108 106 The latest development version is always available from IPython's `GitHub
109 107 site <http://github.com/ipython>`_.
110 108 """
111 109
112 110 license = 'BSD'
113 111
114 112 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
115 113 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
116 114 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
117 115 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
118 116 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
119 117 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
120 118 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
121 119 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'),
122 120 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'),
123 121 }
124 122
125 123 author = 'The IPython Development Team'
126 124
127 125 author_email = 'ipython-dev@scipy.org'
128 126
129 127 url = 'http://ipython.org'
130 128
131 129 download_url = 'https://github.com/ipython/ipython/downloads'
132 130
133 131 platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8']
134 132
135 133 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed',
136 134 'Web-based computing', 'Qt console', 'Embedding']
137 135
138 136 classifiers = [
139 137 'Intended Audience :: Developers',
140 138 'Intended Audience :: Science/Research',
141 139 'License :: OSI Approved :: BSD License',
142 140 'Programming Language :: Python',
143 141 'Programming Language :: Python :: 2',
144 142 'Programming Language :: Python :: 2.6',
145 143 'Programming Language :: Python :: 2.7',
146 144 'Programming Language :: Python :: 3',
147 145 'Programming Language :: Python :: 3.2',
148 146 'Programming Language :: Python :: 3.3',
149 147 'Topic :: System :: Distributed Computing',
150 148 'Topic :: System :: Shells'
151 149 ]
General Comments 0
You need to be logged in to leave comments. Login now