2009-02-22 22:56:53 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(name='django-modeltranslation',
|
2012-02-23 10:03:41 +00:00
|
|
|
version='0.3.3',
|
2009-02-22 22:56:53 +00:00
|
|
|
description='Translates Django models using a registration approach.',
|
2011-04-28 14:33:25 +00:00
|
|
|
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.',
|
2011-04-28 14:38:20 +00:00
|
|
|
author='Peter Eschler',
|
|
|
|
|
author_email='p.eschler@nmy.de',
|
2011-04-28 14:33:25 +00:00
|
|
|
maintainer='Dirk Eschler',
|
|
|
|
|
maintainer_email='d.eschler@nmy.de',
|
2009-02-22 22:56:53 +00:00
|
|
|
url='http://code.google.com/p/django-modeltranslation/',
|
2010-06-15 10:12:06 +00:00
|
|
|
packages=['modeltranslation', 'modeltranslation.management',
|
|
|
|
|
'modeltranslation.management.commands'],
|
2012-02-22 22:54:05 +00:00
|
|
|
package_data={'modeltranslation': ['static/modeltranslation/css/*.css',
|
|
|
|
|
'static/modeltranslation/js/*.js']},
|
2011-06-16 08:39:54 +00:00
|
|
|
include_package_data = True,
|
2011-04-28 14:33:25 +00:00
|
|
|
requires=['django(>=1.0)'],
|
2012-02-23 10:03:41 +00:00
|
|
|
download_url='http://django-modeltranslation.googlecode.com/files/django-modeltranslation-0.3.3.tar.gz',
|
2011-04-28 14:33:25 +00:00
|
|
|
classifiers=['Framework :: Django',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License'],
|
2010-06-15 10:12:06 +00:00
|
|
|
license='New BSD')
|