Added additional meta-data.

This commit is contained in:
Dirk Eschler 2011-04-28 14:33:25 +00:00
parent 0a65b44c18
commit a5ce765879

View file

@ -1,13 +1,26 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='django-modeltranslation',
version='0.2',
description='Translates Django 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='Peter Eschler, Dirk Eschler',
author_email='peschler@googlemail.com, eschler@gmail.com',
author_email='p.eschler@nmy.de, d.eschler@nmy.de',
maintainer='Dirk Eschler',
maintainer_email='d.eschler@nmy.de',
url='http://code.google.com/p/django-modeltranslation/',
packages=['modeltranslation', 'modeltranslation.management',
'modeltranslation.management.commands'],
requires=['django(>=1.0)'],
classifiers=['Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License'],
license='New BSD')