From 9951bb80a38f4349416c9656ddf3d4c83155bed2 Mon Sep 17 00:00:00 2001 From: Ryan Henderson Date: Thu, 28 Jul 2016 14:21:35 +0200 Subject: [PATCH] Version bump (#33) * update version, contacts * update README.md --- README.md | 2 +- image_match/__init__.py | 2 +- setup.py | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5bc9e5a..8772cb6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Documentation Status](https://readthedocs.org/projects/image-match/badge/?version=latest)](https://image-match.readthedocs.org/en/latest/) # image-match -image-match is a simple package for finding approximate image matches from a +image-match is a simple (now Python 3!) package for finding approximate image matches from a corpus. It is similar, for instance, to [pHash](http://www.phash.org/), but includes a database backend that easily scales to billions of images and supports sustained high rates of image insertion: up to 10,000 images/s on our diff --git a/image_match/__init__.py b/image_match/__init__.py index e9df65e..1a55dc8 100644 --- a/image_match/__init__.py +++ b/image_match/__init__.py @@ -1,2 +1,2 @@ __author__ = 'ryan' -__version__ = '0.3' +__version__ = '1.0.0' diff --git a/setup.py b/setup.py index 58a5bac..9c92cdf 100644 --- a/setup.py +++ b/setup.py @@ -63,20 +63,20 @@ def find_version(*file_paths): long_description=__doc__, url='https://github.com/ascribe/image-match/', author='Ryan Henderson', - author_email='ryan@ascribe.io', + author_email='ryan@bigchaindb.com', license='Apache License 2.0', zip_safe=True, classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Topic :: Database', 'Topic :: Database :: Database Engines/Servers', 'Topic :: Software Development', 'Natural Language :: English', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX :: Linux', 'Topic :: Multimedia :: Graphics',