forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (16 loc) · 698 Bytes
/
Copy path__init__.py
File metadata and controls
25 lines (16 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright The IETF Trust 2007-2020, All Rights Reserved
# -*- coding: utf-8 -*-
from . import checks # pyflakes:ignore
# Version must stay in single quotes for automatic CI replace
# Don't add patch number here:
__version__ = '8.0.0-dev'
# Release hash must stay in single quotes for automatic CI replace
__release_hash__ = ''
# Release branch must stay in single quotes for automatic CI replace
__release_branch__ = ''
# set this to ".p1", ".p2", etc. after patching
__patch__ = ""
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celeryapp import app as celery_app
__all__ = ('celery_app',)