]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
Remove 2to3 dependency. Fix #55
authorHong Minhee <minhee@dahlia.kr>
Fri, 12 Apr 2013 19:41:57 +0000 (04:41 +0900)
committerHong Minhee <minhee@dahlia.kr>
Fri, 12 Apr 2013 19:41:57 +0000 (04:41 +0900)
setup.py

index 4991d137da1f59d519b79c7769626124abd03cba..aed9b355531c0ffec8c275b61517448a7981db1e 100644 (file)
--- 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
+      }
 )