2009-02-22 22:56:53 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(name='django-modeltranslation',
|
2010-06-15 10:12:06 +00:00
|
|
|
version='0.2',
|
2009-02-22 22:56:53 +00:00
|
|
|
description='Translates Django models using a registration approach.',
|
2010-06-15 10:12:06 +00:00
|
|
|
author='Peter Eschler, Dirk Eschler',
|
|
|
|
|
author_email='peschler@googlemail.com, eschler@gmail.com',
|
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'],
|
|
|
|
|
license='New BSD')
|