diff --git a/HISTORY.rst b/HISTORY.rst index 90cb54d..12c07a4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -93,7 +93,12 @@ History ------------------ * Directory-only now natural sorted. - 0.6.2 (2017-07-14) ------------------ * Fixed image format recognition. + +0.6.3 (2017-07-25) +------------------ +* Added Travis and Coveralls for testing and coverage automation +* Repo went public +* Python 3.x compatibility diff --git a/setup.py b/setup.py index fdd276e..8e9859f 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='pic2vec', - version='0.6.2', + version='0.6.3', description='Featurize images using a decapitated, pre-trained deep learning network', long_description=readme + '\n\n' + history, author='Jett Oristaglio', @@ -49,11 +49,14 @@ zip_safe=False, keywords=['image_featurizer', 'featurize', 'pic2vec'], classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements,