From e468ac10862a0809e064dd1d7b2f975f34fdf742 Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Fri, 14 Aug 2015 01:15:58 +0500 Subject: [PATCH] switch to setuptools; bump version --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 69fff70..49ad917 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ #! /usr/bin/env python import codecs import sys -from distutils.core import setup +from setuptools import setup -__version__ = '0.1' +__version__ = '1.0' if sys.version_info >= (3, ): @@ -29,7 +29,7 @@ package_data={'text_unidecode': ['data.bin']}, classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Artistic License', 'Programming Language :: Python',