mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-05-09 16:14:50 +00:00
7 lines
247 B
Python
7 lines
247 B
Python
"""Serve files with Django and reverse proxies."""
|
|
from django_downloadview.api import * # NoQA
|
|
|
|
import pkg_resources
|
|
|
|
#: Module version, as defined in PEP-0396.
|
|
__version__ = pkg_resources.get_distribution(__package__.replace("-", "_")).version
|