mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-05-11 08:43:11 +00:00
41 lines
2 KiB
Python
Executable file
41 lines
2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name='wagtail-modeltranslation',
|
|
version='0.2.0',
|
|
description='Translates Waghtail CMS models using a registration approach.',
|
|
long_description=(
|
|
'The modeltranslation application can be used to translate dynamic '
|
|
'content of existing models to an arbitrary number of languages '
|
|
'without having to change the original model classes. It uses a '
|
|
'registration approach (comparable to Django\'s admin app) to be able '
|
|
'to add translations to existing or new projects and is fully '
|
|
'integrated into the Django admin backend.'),
|
|
author='Rui Martins',
|
|
author_email='rui.martins@infoportugal.pt',
|
|
maintainer='Rui Martins',
|
|
maintainer_email='rui.martins@infoportugal.pt',
|
|
url='https://github.com/infoportugal/wagtail-modeltranslation',
|
|
packages=['wagtail_modeltranslation', 'wagtail_modeltranslation.management',
|
|
'wagtail_modeltranslation.management.commands'],
|
|
package_data={'wagtail_modeltranslation': ['static/modeltranslation/css/*.css',
|
|
'static/modeltranslation/js/*.js']},
|
|
requires=['django(>=1.4)', 'wagtail(>=1.0)'],
|
|
download_url='https://github.com/infoportugal/wagtail-modeltranslation/releases/download/0.1.4/wagtail-modeltranslation-0.2.0.tar.gz',
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Operating System :: OS Independent',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'Framework :: Django',
|
|
'Framework :: Wagtail CMS',
|
|
'License :: OSI Approved :: BSD License'],
|
|
license='New BSD')
|