django-modeltranslation/setup.py

31 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python
from distutils.core import setup
setup(name='django-modeltranslation',
version='0.4.0-beta2',
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='peschler@gmail.com',
2011-04-28 14:33:25 +00:00
maintainer='Dirk Eschler',
maintainer_email='eschler@gmail.com',
url='https://github.com/deschler/django-modeltranslation',
2010-06-15 10:12:06 +00:00
packages=['modeltranslation', 'modeltranslation.management',
'modeltranslation.management.commands'],
package_data={'modeltranslation': ['static/modeltranslation/css/*.css',
'static/modeltranslation/js/*.js']},
include_package_data = True,
requires=['django(>=1.2)'],
download_url='https://github.com/downloads/deschler/django-modeltranslation/django-modeltranslation-0.4.0-beta2.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')