12 lines
342 B
Python
12 lines
342 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'django_polymorphic',
|
|
version = '0.2',
|
|
description = 'Seamless Polymorphic Inheritance for Django Models',
|
|
author = 'Bert Constantin',
|
|
author_email = 'bert.constantin@gmx.de',
|
|
url = 'http://bserve.webhop.org/wiki/django_polymorphic',
|
|
packages = [ 'polymorphic' ],
|
|
)
|