From: Hong Minhee Date: Fri, 12 Apr 2013 19:41:57 +0000 (+0900) Subject: Remove 2to3 dependency. Fix #55 X-Git-Tag: rel_0_6_0~22^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13aa853759c34149153fa93e7b979476aeb37da1;p=thirdparty%2Fsqlalchemy%2Falembic.git Remove 2to3 dependency. Fix #55 --- diff --git a/setup.py b/setup.py index 4991d137..aed9b355 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,7 @@ from setuptools import setup, find_packages -import sys import os import re -extra = {} -if sys.version_info >= (3, 0): - extra.update( - use_2to3=True, - ) v = open(os.path.join(os.path.dirname(__file__), 'alembic', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1) @@ -62,6 +56,5 @@ setup(name='alembic', install_requires=requires, entry_points = { 'console_scripts': [ 'alembic = alembic.config:main' ], - }, - **extra + } )