fixing entry_points annotation to expose class rather than module

This commit is contained in:
Daniel Welch
2018-01-15 16:27:39 -06:00
parent c8599fee22
commit 7b9560a517

View File

@@ -59,8 +59,8 @@ setup(
],
entry_points={
'djangoq.errorreporters': [
'rollbar = django_q_rollbar.Rollbar',
'sentry = django_q_sentry.Sentry',
'rollbar = django_q_rollbar:Rollbar',
'sentry = django_q_sentry:Sentry',
]
},
extras_require={