forked from django-background-tasks/django-background-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 750 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='django-background-tasks',
version=version,
description='Database backed asynchronous task queue',
long_description=codecs.open('README.md', encoding='utf-8').read(),
author='arteria GmbH, John Montgomery',
author_email='[email protected]',
url='http://github.com/arteria/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,
)