mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
10 lines
266 B
Python
10 lines
266 B
Python
"""Serve files with Django and reverse proxies."""
|
|
import pkg_resources
|
|
|
|
|
|
#: Module version, as defined in PEP-0396.
|
|
__version__ = pkg_resources.get_distribution(__package__.replace('-', '_')).version
|
|
|
|
|
|
# API shortcuts.
|
|
from django_downloadview.api import * # NoQA
|