mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
12 lines
320 B
Python
12 lines
320 B
Python
# -*- coding: utf-8 -*-
|
|
"""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
|