Skip to content

Commit 9951bb8

Browse files
authored
Version bump (#33)
* update version, contacts * update README.md
1 parent 1f7f099 commit 9951bb8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Documentation Status](https://readthedocs.org/projects/image-match/badge/?version=latest)](https://image-match.readthedocs.org/en/latest/)
44

55
# image-match
6-
image-match is a simple package for finding approximate image matches from a
6+
image-match is a simple (now Python 3!) package for finding approximate image matches from a
77
corpus. It is similar, for instance, to [pHash](http://www.phash.org/), but
88
includes a database backend that easily scales to billions of images and
99
supports sustained high rates of image insertion: up to 10,000 images/s on our

image_match/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__author__ = 'ryan'
2-
__version__ = '0.3'
2+
__version__ = '1.0.0'

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,20 @@ def find_version(*file_paths):
6363
long_description=__doc__,
6464
url='https://github.com/ascribe/image-match/',
6565
author='Ryan Henderson',
66-
author_email='ryan@ascribe.io',
66+
author_email='ryan@bigchaindb.com',
6767
license='Apache License 2.0',
6868
zip_safe=True,
6969

7070
classifiers=[
71-
'Development Status :: 3 - Alpha',
71+
'Development Status :: 4 - Beta',
7272
'Intended Audience :: Developers',
7373
'Topic :: Database',
7474
'Topic :: Database :: Database Engines/Servers',
7575
'Topic :: Software Development',
7676
'Natural Language :: English',
7777
'License :: OSI Approved :: Apache Software License',
78-
'Programming Language :: Python :: 2',
79-
'Programming Language :: Python :: 2.7',
78+
'Programming Language :: Python :: 3',
79+
'Programming Language :: Python :: 3.4',
8080
'Operating System :: MacOS :: MacOS X',
8181
'Operating System :: POSIX :: Linux',
8282
'Topic :: Multimedia :: Graphics',

0 commit comments

Comments
 (0)