diff --git a/setup.py b/setup.py index d8569c0..fb2189b 100755 --- a/setup.py +++ b/setup.py @@ -9,48 +9,10 @@ import sys import os from setuptools import setup, find_packages -from setuptools.command.install_lib import install_lib as _install_lib from distutils.command.build import build as _build from distutils.command.sdist import sdist from distutils.cmd import Command -class compile_translations(Command): - description = 'compile message catalogs to MO files via django compilemessages' - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - try: - from django.core.management.commands.compilemessages import \ - compile_messages - for path in ['allauth_a2']: - if path.endswith('.py'): - continue - if not os.path.isdir(os.path.join(path, 'locale')): - continue - curdir = os.getcwd() - os.chdir(os.path.realpath(path)) - compile_messages(sys.stderr) - os.chdir(curdir) - except ImportError: - print - sys.stderr.write('!!! Please install Django >= 1.4 to build translations') - print - print - -class build(_build): - sub_commands = [('compile_translations', None)] + _build.sub_commands - -class install_lib(_install_lib): - def run(self): - self.run_command('compile_translations') - _install_lib.run(self) - class eo_sdist(sdist): def run(self): @@ -111,9 +73,6 @@ setup(name="allauth_a2", include_package_data=True, packages=find_packages(), scripts=(), - setup_requires=[ - 'django>=1.5.5', - ], install_requires=[ 'requests>=2.1', 'django-allauth', @@ -122,9 +81,6 @@ setup(name="allauth_a2", 'git+git://repos.entrouvert.org/django_allauth_a2_provider', ], cmdclass={ - 'build': build, - 'install_lib': install_lib, - 'compile_translations': compile_translations, 'sdist': eo_sdist }, )