forked from hotkit/django-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.2 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
35
36
37
38
39
import os
from setuptools import setup
import sys
def read(fname1, fname2):
if os.path.exists(fname1):
fname = fname1
else:
fname = fname2
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-async",
version = "0.7.3",
author = "Kirit Saelensminde",
author_email = "[email protected]",
url='http://www.kirit.com/Django%20Async',
description = "Asynchronous task execution with proper database transaction management for Django",
long_description = read('README','README.markdown'),
license = "Boost Software License - Version 1.0 - August 17th, 2003",
keywords = "django async taskqueue task queue",
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved",
],
install_requires = ['lockfile', 'simplejson'],
packages = ['async',
'async.tests',
'async.management',
'async.management.commands',
'async.migrations',
'async.south_migrations',
]
)