-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.14 KB
/
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
28
29
30
31
32
33
34
from setuptools import setup
import os
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name='django-async-tasks',
version=__import__('async_tasks').__version__,
description=read('DESCRIPTION'),
license='GNU General Public License (GPL)',
keywords="task queue, job queue, async tasks, redis, python, django",
author='Ivan Surov',
author_email='[email protected]',
packages=['async_tasks'],
install_requires=['redis', 'django-redis-cache'],
include_package_data=True,
long_description=read('README'),
url='https://github.com/ivansurov/django-async-tasks',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)