|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -u"""Release data for the pyreadline project. |
| 2 | +"""Release data for the pyreadline project. |
3 | 3 |
|
4 | 4 | $Id$"""
|
5 | 5 |
|
|
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 |
| -name = u'pyreadline' |
| 16 | +name = 'pyreadline' |
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 |
| -branch = u'' |
| 23 | +branch = '' |
24 | 24 |
|
25 |
| -version = u'1.7' |
| 25 | +version = '1.7' |
26 | 26 |
|
27 |
| -revision = u'$Revision$' |
| 27 | +revision = '$Revision$' |
28 | 28 |
|
29 |
| -description = u"A python implmementation of GNU readline." |
| 29 | +description = "A python implmementation of GNU readline." |
30 | 30 |
|
31 | 31 | long_description = \
|
32 |
| -u""" |
| 32 | +""" |
33 | 33 | The pyreadline package is a python implementation of GNU readline functionality
|
34 | 34 | it is based on the ctypes based UNC readline package by Gary Bishop.
|
35 | 35 | It is not complete. It has been tested for use with windows 2000 and windows xp.
|
|
51 | 51 | .. _repository:
|
52 | 52 | """
|
53 | 53 |
|
54 |
| -license = u'BSD' |
| 54 | +license = 'BSD' |
55 | 55 |
|
56 |
| -authors = {u'Jorgen' : (u'Jorgen Stenarson',u'jorgen.stenarson@bostream.nu'), |
57 |
| - u'Gary': (u'Gary Bishop', ''), |
58 |
| - u'Jack': (u'Jack Trainor', ''), |
| 56 | +authors = {'Jorgen' : ('Jorgen Stenarson','jorgen.stenarson@bostream.n'), |
| 57 | + 'Gary': ('Gary Bishop', ''), |
| 58 | + 'Jack': ('Jack Trainor', ''), |
59 | 59 | }
|
60 | 60 |
|
61 |
| -url = u'http://ipython.scipy.org/moin/PyReadline/Intro' |
| 61 | +url = 'http://ipython.scipy.org/moin/PyReadline/Intro' |
62 | 62 |
|
63 |
| -download_url = u'https://launchpad.net/pyreadline/+download' |
| 63 | +download_url = 'https://launchpad.net/pyreadline/+download' |
64 | 64 |
|
65 |
| -platforms = [u'Windows XP/2000/NT', |
66 |
| - u'Windows 95/98/ME'] |
| 65 | +platforms = ['Windows XP/2000/NT', |
| 66 | + 'Windows 95/98/ME'] |
67 | 67 |
|
68 |
| -keywords = [u'readline', |
69 |
| - u'pyreadline'] |
| 68 | +keywords = ['readline', |
| 69 | + 'pyreadline'] |
70 | 70 |
|
71 |
| -classifiers = [u'Development Status :: 5 - Production/Stable', |
72 |
| - u'Environment :: Console', |
73 |
| - u'Operating System :: Microsoft :: Windows', |
74 |
| - u'License :: OSI Approved :: BSD License', |
75 |
| - u'Programming Language :: Python :: 2.4', |
76 |
| - u'Programming Language :: Python :: 2.5', |
77 |
| - u'Programming Language :: Python :: 2.6', |
78 |
| - u'Programming Language :: Python :: 2.7', |
| 71 | +classifiers = ['Development Status :: 5 - Production/Stable', |
| 72 | + 'Environment :: Console', |
| 73 | + 'Operating System :: Microsoft :: Windows', |
| 74 | + 'License :: OSI Approved :: BSD License', |
| 75 | + 'Programming Language :: Python :: 2.4', |
| 76 | + 'Programming Language :: Python :: 2.5', |
| 77 | + 'Programming Language :: Python :: 2.6', |
| 78 | + 'Programming Language :: Python :: 2.7', |
79 | 79 | ]
|
80 | 80 |
|
81 | 81 |
|
0 commit comments