forked from rutube/alco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (51 loc) · 1.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='alco',
version='2.5.2',
long_description=read_md('README.md'),
packages=['alco',
'alco.grep',
'alco.grep.api',
'alco.grep.migrations',
'alco.grep.templatetags',
'alco.collector',
'alco.collector.api',
'alco.collector.management',
'alco.collector.management.commands',
'alco.collector.migrations',
],
url='https://github.com/rutube/alco',
include_package_data=True,
package_data={
'alco': [
'alco/collector/templates/',
'alco/grep/templates/',
'alco/grep/static/',
],
},
install_requires=[
'Django>=1.8',
'djangorestframework>=3.1',
'dateutils',
'django-filter>=0.10.0',
'django-mass-edit',
'jsonfield',
'python-daemon',
'redis',
'pyrabbit',
'django_sphinxsearch',
'ujson',
'librabbitmq',
'logutils',
],
license='Beerware',
author='tumbler',
author_email='zimbler@gmail.com',
description='Autonomous Log Collector and Observer'
)