Files
django-q2/django_q/__init__.py
Ilan 8e07203d18 Adding sphinx builds to Travis
* added default module django_q
* set build mode to nit-picky
* warnings raise errors

Want to make sure the docs are neat and build on Travis , to make it easier to accept doc pull requests
2015-07-13 15:30:12 +02:00

14 lines
307 B
Python

import os
import sys
myPath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, myPath)
from .tasks import async, schedule, result, fetch
from .models import Task, Schedule, Success, Failure
from .cluster import Cluster
VERSION = (0, 3, 4)
default_app_config = 'django_q.apps.DjangoQConfig'