-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (23 loc) · 840 Bytes
/
setup.py
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
26
27
import os
from setuptools import setup
with open("README.md", "r") as fh:
README = fh.read()
setup(
name='django-q-sentry',
version='0.1.6',
author='Daniel Welch, Christo Goosen',
author_email='[email protected], [email protected]',
keywords='django distributed task queue worker scheduler cron redis disque ironmq sqs orm mongodb multiprocessing sentry',
packages=['django_q_sentry'],
install_requires=['sentry-sdk>=1.5.5'],
url='https://django-q.readthedocs.org',
license='MIT',
description='A Sentry support plugin for Django Q',
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)