mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-04 03:24:52 +00:00
Added additional meta-data.
This commit is contained in:
parent
0a65b44c18
commit
a5ce765879
1 changed files with 15 additions and 2 deletions
17
setup.py
17
setup.py
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue