mirror of
https://github.com/django-polymorphic/django-polymorphic.git
synced 2026-01-15 20:38:41 +03:00
31 lines
2.6 KiB
Python
31 lines
2.6 KiB
Python
r"""
|
|
::
|
|
|
|
██████╗ ██╗ █████╗ ███╗ ██╗ ██████╗ ██████╗
|
|
██╔══██╗ ██║██╔══██╗████╗ ██║██╔════╝ ██╔═══██╗
|
|
██║ ██║ ██║███████║██╔██╗ ██║██║ ███╗██║ ██║
|
|
██║ ██║██ ██║██╔══██║██║╚██╗██║██║ ██║██║ ██║
|
|
██████╔╝╚█████╔╝██║ ██║██║ ╚████║╚██████╔╝╚██████╔╝
|
|
╚═════╝ ╚════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═════╝
|
|
|
|
██████╗ ██████╗ ██╗ ██╗ ██╗███╗ ███╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗██╗ ██████╗
|
|
██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝████╗ ████║██╔═══██╗██╔══██╗██╔══██╗██║ ██║██║██╔════╝
|
|
██████╔╝██║ ██║██║ ╚████╔╝ ██╔████╔██║██║ ██║██████╔╝██████╔╝███████║██║██║
|
|
██╔═══╝ ██║ ██║██║ ╚██╔╝ ██║╚██╔╝██║██║ ██║██╔══██╗██╔═══╝ ██╔══██║██║██║
|
|
██║ ╚██████╔╝███████╗██║ ██║ ╚═╝ ██║╚██████╔╝██║ ██║██║ ██║ ██║██║╚██████╗
|
|
╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═════╝
|
|
|
|
|
|
Seamless Polymorphic Inheritance for Django Models
|
|
"""
|
|
|
|
VERSION = "4.10.2"
|
|
|
|
__title__ = "Django Polymorphic"
|
|
__version__ = VERSION # version synonym for backwards compatibility
|
|
__author__ = "Brian Kohan"
|
|
__license__ = "BSD-3-Clause"
|
|
__copyright__ = (
|
|
"Copyright 2010-2025, Bert Constantin, Chris Glass, Diederik van der Boor, Brian Kohan"
|
|
)
|