Skip to content

Commit 5d8629d

Browse files
committed
Update reference to Python 2.7
1 parent c42cb30 commit 5d8629d

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ BoGo
44
[![Build Status](https://travis-ci.org/BoGoEngine/bogo-python.svg?branch=master)](https://travis-ci.org/BoGoEngine/bogo-python)
55
[![Coverage Status](https://coveralls.io/repos/BoGoEngine/bogo-python/badge.png?branch=master)](https://coveralls.io/r/BoGoEngine/bogo-python?branch=master)
66

7-
BoGo is a Python 3 Vietnamese input method conversion library. This library
7+
BoGo is a Vietnamese input method conversion library for Python. This library
88
is intentionally functional with no internal state and side-effect.
99

1010
Installation
@@ -42,4 +42,4 @@ Some functions from `bogo.core` are exported to package toplevel:
4242
- `get_telex_definition()`
4343
- `get_vni_definition()`
4444

45-
BoGo is extensively tested with Python 3.2 and Python 3.3.
45+
BoGo is extensively tested with Python 2.7, Python 3.2 and Python 3.3.

bogo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
"""\
4-
BoGo is a Python 3 Vietnamese input method conversion library. This library
4+
BoGo is a Vietnamese input method conversion library. This library
55
is intentionally functional with no internal state and side-effect.
66
77
Usage

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,25 @@
44
name='bogo',
55
packages=['bogo'],
66
version='1.0.0',
7-
description='Python 3 library for implementing Vietnamese input method editors with a purely functional interface.',
7+
description='Library for implementing Vietnamese input method editors with a purely functional interface.',
88
author='Trung Ngo',
99
author_email='[email protected]',
1010
url='https://github.com/BoGoEngine/bogo-python',
1111
download_url='https://github.com/BoGoEngine/bogo-python/archive/v1.0.tar.gz',
1212
keywords=['vietnamese'],
1313
classifiers=[
14-
"Development Status :: 5 - Production/Stable",
1514
"Programming Language :: Python",
1615
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 2.7",
17+
"Development Status :: 5 - Production/Stable",
1718
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
1819
"Operating System :: OS Independent",
1920
"Intended Audience :: Developers",
2021
"Topic :: Text Processing :: Linguistic",
2122
"Topic :: Software Development :: Libraries :: Python Modules"
2223
],
2324
long_description="""\
24-
BoGo is a Python 3 Vietnamese input method conversion library. This library
25+
BoGo is a Vietnamese input method conversion library. This library
2526
is intentionally functional with no internal state and side-effect.
2627
2728
Usage
@@ -48,7 +49,7 @@
4849
- `get_telex_definition()`
4950
- `get_vni_definition()`
5051
51-
BoGo is extensively tested with Python 3.2 and Python 3.3.
52+
BoGo is extensively tested with Python 2.7, Python 3.2 and Python 3.3.
5253
"""
5354

5455
)

0 commit comments

Comments
 (0)