forked from django-background-tasks/django-background-tasks
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
22 lines (19 loc) · 761 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
from setuptools import setup, find_packages
import codecs
version = __import__('background_task').__version__
classifiers = [c for c in open('classifiers').read().splitlines() if '#' not in c]
setup(
name='django4-background-tasks',
version=version,
description='Database backed asynchronous task queue',
long_description=open('README.rst').read(),
author='André Meneses (adapting from arteria GmbH, John Montgomery)',
author_email='andre@meneses.pt',
url='http://github.com/meneses-pt/django-background-tasks',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
install_requires=open('requirements.txt').read().splitlines(),
zip_safe=True,
classifiers=classifiers,
)