forked from ella/django-event-tracker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (31 loc) · 1012 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
28
29
30
31
32
33
from distutils.core import setup
import littlebro
VERSION = (0, 2, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
setup(
name = 'django-littlebro',
version = __versionstr__,
description = 'Django LittleBro: Asynchronous event tracking using MongoDB and Celery.',
long_description = '\n'.join((
'Django LittleBro',
'',
'Simple django application for asynchronous tracking of events',
'Uses celery for transport of messages and MongoDB for event store.',
'Forked from http://github.com/ella/django-event-tracker',
)),
author = 'Chase Davis',
author_email='[email protected]',
license = 'BSD',
url='https://github.com/cirlabs',
packages = ['littlebro', 'littlebro.conf', 'littlebro.trackers', 'littlebro.backends'],
install_requires = [
'importlib',
'anyjson',
'carrot>=0.6.0',
'celery>=0.8.0',
'pymongo',
'django-celery',
'django-kombu',
]
)