mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-04-09 16:10:59 +00:00
12 lines
447 B
Python
Executable file
12 lines
447 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='django-modeltranslation',
|
|
version='0.1',
|
|
description='Translates Django models using a registration approach.',
|
|
author='Peter Eschler',
|
|
author_email='peschler@googlemail.com',
|
|
url='http://code.google.com/p/django-modeltranslation/',
|
|
packages=['modeltranslation', 'modeltranslation.management', 'modeltranslation.management.commands'],
|
|
)
|