From cab48213aa2a1aaf0fad7b3fde3a9ee28d3e3bd5 Mon Sep 17 00:00:00 2001 From: Chenjie Xu Date: Mon, 12 Apr 2021 19:36:09 +0800 Subject: [PATCH] release 1.0.0 --- CHANGES | 4 +++- README.md | 13 ++++++++++++- README_CN.md | 10 +++++++++- setup.py | 9 ++++++--- 4 files changed, 30 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index ef65b92..ce637da 100644 --- a/CHANGES +++ b/CHANGES @@ -18,4 +18,6 @@ - add points information in result 0.3.5 (6 March 2021) - support decoding qrcode with bytes format content -- support passing array into BarCodeReader \ No newline at end of file +- support passing array into BarCodeReader +1.0.0 (12 April 2021) +- better decoding performance \ No newline at end of file diff --git a/README.md b/README.md index 296a92f..30eb292 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # pyzxing + English | [简体中文](README_CN.md) [![Travis (.org)](https://img.shields.io/travis/ChenjieXu/pyzxing)](https://travis-ci.org/github/ChenjieXu/pyzxing) @@ -6,7 +7,17 @@ English | [简体中文](README_CN.md) [![PyPI](https://img.shields.io/pypi/v/pyzxing)](https://pypi.org/project/pyzxing/) [![Codacy grade](https://img.shields.io/codacy/grade/353f276d2073445aab7af3e32b0d503a)](https://www.codacy.com/manual/ChenjieXu/pyzxing) -A Python wrapper of [ZXing library](https://github.com/zxing/zxing). python-zxing does not work properly and is out of maintenance. So I decide to create this repository so that Pythoneers can take advantage of ZXing library with minimum effort. +## First GA + +After a year of development, the first General Availability of pyzxing is finally released. I would like to express my +gratitude to all the developers for their suggestions and issue, which helped the development of this project to a great +extent. This project will continue to be open source and updated regularly. + +## Introduction + +A Python wrapper of [ZXing library](https://github.com/zxing/zxing). python-zxing does not work properly and is out of +maintenance. So I decide to create this repository so that Pythoneers can take advantage of ZXing library with minimum +effort. ## Features diff --git a/README_CN.md b/README_CN.md index 1d2c1ba..cb140cd 100644 --- a/README_CN.md +++ b/README_CN.md @@ -1,4 +1,5 @@ # pyzxing + 简体中文 | [English](README.md) [![Travis (.org)](https://img.shields.io/travis/ChenjieXu/pyzxing)](https://travis-ci.org/github/ChenjieXu/pyzxing) @@ -6,7 +7,14 @@ [![PyPI](https://img.shields.io/pypi/v/pyzxing)](https://pypi.org/project/pyzxing/) [![Codacy grade](https://img.shields.io/codacy/grade/353f276d2073445aab7af3e32b0d503a)](https://www.codacy.com/manual/ChenjieXu/pyzxing) -Pyzxing是二维码识别[ZXing](https://github.com/zxing/zxing)JAVA库的Python API。由于Zxing库相较于其他库二维码识别率最高,但使用起来十分繁琐,且python-zxing不能正常使用缺已不再维护,所以我创建了这个库让使用Python的人可以以最小的精力来使用Zxing库来进行二维码识别。 +## 第一个正式版本 + +经历了一年的开发,pyzxing的第一个正式版本终于发布了。十分感谢各位开发者的建议和issue,这非常大程度上帮助了这个项目的开发。这个项目会继续保持开源并定时更新。 + +## 简介 + +Pyzxing是二维码识别[ZXing](https://github.com/zxing/zxing)JAVA库的Python +API。由于Zxing库相较于其他库二维码识别率最高,但使用起来十分繁琐,且python-zxing不能正常使用缺已不再维护,所以我创建了这个库让使用Python的人可以以最小的精力来使用Zxing库来进行二维码识别。 ## 特性 diff --git a/setup.py b/setup.py index 6e0b39f..bedadaa 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyzxing", - version="0.3.5", + version="1.0.0", url="https://github.com/ChenjieXu/pyzxing", description="Python wrapper for ZXing Java library", long_description=readme, @@ -18,12 +18,15 @@ packages=find_packages(), license='MIT', classifiers=[ + "Development Status :: 5 - Production/Stable", + 'Intended Audience :: Developers', + "Intended Audience :: Financial and Insurance Industry", 'License :: OSI Approved :: MIT License', + "Operating System :: Microsoft :: Windows", + "Operating System :: POSIX :: Linux", 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', - 'Intended Audience :: Developers', - 'Intended Audience :: Science/Research', ], install_requires=reqs.strip().split('\n'), )